random number function js 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: angular random number between 1 and 10
function randomNumber(min, max) {
return Math.random() * (max - min) + min;
}
Example 3: js random int
let int = Math.floor(Math.random() * 10);
Example 4: randint js
const Math.randint => (min,max) {
[min,max] = (max===undefined)?[0,min]:(min>max)[max,min]:[min,max];
return Math.floor(Math.random*(max-min)+min);
}