js生成4位随机数

let out = 0;
do {
out = Math.floor(Math.random() * 10000);
} while( out < 1000 );
console.log(out);



头像
0/200
图片验证码