0
Q:

javascript random number between 0 and 10

function getRandomNumberBetween(min,max){
    return Math.floor(Math.random()*(max-min+1)+min);
}

//usage example: getRandomNumberBetween(20,400); 
25
// 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;
1
Math.floor(Math.random() * 10);
11
Math.floor(Math.random() * 10) + 1
3
Math.floor(Math.random() * 3);
5
Math.random() * 10 = 0-10
1

New to Communities?

Join the community