Math.random js between bounds code example
Example 1: generate random number between two numbers javascript
Math.floor(Math.random() * (max - min + 1)) + min;
// Between 0 and max
Math.floor(Math.random() * (max + 1));
// Between 1 and max
Math.floor(Math.random() * max) + 1;
Example 2: get random numbers javascript
//Write the following code to get a random number between 0 and n
Math.floor(Math.random() * n);