randomly generate number javascript code example
Example 1: random number generator javascript
Math.floor(Math.random() * (max - min + 1)) + min;
//max is the highest number you want it to get
//min is the lowest number you want it to get
Example 2: Random number generation in javascript generate random number using javascript js
const random = Math.floor(Math.random() * 20);
console.log(random);
// 12