random floor code example

Example 1: js random generator

var options = ["Your options", "Another option!", "This is an option."];
var chosenOption = Math.floor(Math.random() * options.length);
console.log(options[option]);

Example 2: 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 3: javascript random number

Math.random() * 10 = 0-10