Answers for "javascript rnd=math.random()*nm1.length|0"

5

js random int

function getRandomInt(min, max) {
    min = Math.ceil(min);
    max = Math.floor(max);
    return Math.floor(Math.random() * (max - min + 1)) + min;
}
Posted by: Guest on September-18-2020
0

javascript random 4 digit number

var seq = (Math.floor(Math.random() * 10000) + 10000).toString().substring(1);
console.log(seq);
Posted by: Guest on September-21-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language