css Math.floor +Math.random code example
Example 1: random int javascript
//Returns random Int between 0 and 2 (included)
Math.floor(Math.random()*3)
Example 2: random number in js
Math.random() returns a random number in [0,1)
//Returns random Int between 0 and 2 (included)
Math.floor(Math.random()*3)
Math.random() returns a random number in [0,1)