Answers for "get random nuber js"

9

generate random numbers in js

Math.floor((Math.random() * 100) + 1);
//Generate random numbers between 1 and 100
//Math.random generates [0,1)
Posted by: Guest on March-21-2020
3

get random numbers javascript

//Write the following code to get a random number between 0 and n
Math.floor(Math.random() * n);
Posted by: Guest on June-20-2020
0

random number javascript

Math.floor(Math.random() * 11);      // returns a random integer from 0 to 10
Math.floor(Math.random() * 10) + 1;  // returns a random integer from 1 to 10
Posted by: Guest on February-22-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language