random js from to code example
Example 1: random number generator javascript
Math.floor(Math.random() * (max - min + 1)) + min;
Example 2: 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 3: javascript get random number
function getRandomArbitrary(min, max) {
return Math.random() * (max - min) + min;
}
Example 4: random number in js
Math.random() returns a random number in [0,1)