math.floor(math.random() * 10) code example
Example 1: random numbers javascript
Math.floor(Math.random() * 100); // returns a
random integer from 0 to 99
Example 2: math.floor + roandom
//Write the following code to get a random number between 1 and 10
const result = Math.floor(Math.random()*(10)+ 1);