generate a number between 1 and 100 with math.floormath.random 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: random number in js
Math.random() returns a random number in [0,1)