Crie número aleatório de 4 dígitos JS
var val = Math.floor(1000 + Math.random() * 9000);
console.log(val);
Nikita Gourevitch
var val = Math.floor(1000 + Math.random() * 9000);
console.log(val);
var min = 10000;
var max = 90000;
var num = Math.floor(Math.random() * min)) + max;
here you can increse the min and max value this is for 5 digits
or this
Math.floor(Math.random()*90000) + 10000;
Math.floor(100000 + Math.random() * 900000);