create random numbers in javascript code example
Example 1: how to generate a random number in javascript
Math.random();
Math.floor(Math.random())
Math.floor(Math.random() * 10) + 1
Example 2: generate random number javascript
function randomNumber(min, max) {
return Math.floor(Math.random() * (max - min)) + min;
}
Example 3: javascript random number generator
let replies = [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12"
];
let result = Math.floor(Math.random() * replies.length);
Example 4: random number in js
Math.random() returns a random number in [0,1)