random between ts code example
Example 1: javascript random no between 2 numbers
function randomIntFromInterval(min, max) { // min and max included
return Math.floor(Math.random() * (max - min + 1) + min);
}
Example 2: get random numbers javascript
//Write the following code to get a random number between 0 and n
Math.floor(Math.random() * n);