math random 100-200 js code example
Example 1: js random int
let int = Math.floor(Math.random() * 10);
Example 2: random number in js
Math.random() returns a random number in [0,1)
let int = Math.floor(Math.random() * 10);
Math.random() returns a random number in [0,1)