Answers for "math.random javascript between 1000 and 9999"

21

javascript random number between 1 and 10

// Genereates a number between 0 to 1;
Math.random();

// to gerate a randome rounded number between 1 to 10;
var theRandomNumber = Math.floor(Math.random() * 10) + 1;
Posted by: Guest on September-02-2020
0

js Write a function that will return a random integer between 10 and 100

function randomIntFromInterval(min, max) { // min and max included 
  return Math.floor(Math.random() * (max - min + 1) + min)
}

const rndInt = randomIntFromInterval(1, 6)
console.log(rndInt)
 Run code snippetHide results
Posted by: Guest on December-05-2021

Code answers related to "math.random javascript between 1000 and 9999"

Code answers related to "Javascript"

Browse Popular Code Answers by Language