random namber js code example
Example 1: angular random number between 1 and 10
function randomInteger(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
Example 2: how to create a random number generator in javascript
console.log(Math.floor(Math.random() * 10))
Example 3: random function javascript
let object = random(0, 50);
// making "object" a random number between 0 and 50.
console.log(object);
// printing object in the console