Answers for "java script random int"

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