rand function js code example
Example 1: angular random number between 1 and 10
function randomNumber(min, max) {
return Math.random() * (max - min) + min;
}
Example 2: 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