math.random 5 digit code example
Example 1: random int between two numbers javascript
// Between any two numbers
Math.floor(Math.random() * (max - min + 1)) + min;
// Between 0 and max
Math.floor(Math.random() * (max + 1));
// Between 1 and max
Math.floor(Math.random() * max) + 1;
Example 2: javascript random 4 digit number
var seq = (Math.floor(Math.random() * 10000) + 10000).toString().substring(1);
console.log(seq);