how to use random in js code example

Example 1: how to generate a random number in javascript

//To genereate a number between 0-1
Math.random();
//To generate a number that is a whole number rounded down
Math.floor(Math.random())
/*To generate a number that is a whole number rounded down between
1 and 10 */
Math.floor(Math.random() * 10) + 1 //the + 1 makes it so its not 0.

Example 2: random number in js

Math.floor(Math.random() * 5)   // print 0 to 5 && 5 not included

# it will give whole random number upto 5.
# you can add your lastIndex at place of (5).
# Math.floor() function returns the largest integer less than or equal to a given number.

Example 3: random number in js

Math.random() returns a random number in [0,1)