random js from to code example

Example 1: random number generator javascript

Math.floor(Math.random() * (max - min + 1)) + min;
//max is the highest number you want it to get
//min is the lowest number you want it to get

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

// Returns a number between min and max
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)