js random 1 or 0 code example

Example 1: random int between two numbers javascript

// Between any two numbers
Math.floor(Math.random() * (max - min + 1)) + min;

// Between 0 and max
Math.floor(Math.random() * (max + 1));

// Between 1 and max
Math.floor(Math.random() * max) + 1;

Example 2: javascript random number between 0 and 10

Math.floor(Math.random() * 10);

Example 3: generate random number between two numbers javascript

Math.floor(Math.random() * (max - min + 1)) + min;

// Between 0 and max
Math.floor(Math.random() * (max + 1));

// Between 1 and max
Math.floor(Math.random() * max) + 1;

Example 4: math random 0 to 100

Math.floor(Math.random() * 101);

Example 5: javascript random number 1 or -1

//an equation that returns either 1 or -1
var number = ((Math.floor(Math.random() * 2) - 2) * 2) + 1

Tags:

Misc Example