gen random in 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: Random number generation in javascript generate random number using javascript js
const random = Math.floor(Math.random() * 20);
console.log(random);
// 12