发布:2023/11/5 13:41:26作者:管理员 来源:本站 浏览次数:471
可以使用Node.js内置的Math库来产生随机值,如下所示:
产生0到1之间的随机数:
console.log(Math.random());
产生指定范围内的随机整数:
function getRandomInt(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min + 1)) + min;
}
console.log(getRandomInt(1,10)); //产生1-10之间的随机整数
© Copyright 2014 - 2024 柏港建站平台 ejk5.com. 渝ICP备16000791号-4