以下是使用JavaScript编写的函数,用于生成0到100之间的随机整数:
function getRandomInt() {
return Math.floor(Math.random() * 101);
}
console.log(getRandomInt()); // 输出一个0到100之间的随机整数
使用Math.random()
方法可以生成0到1之间的随机小数,将其乘以101后取整,即可得到0到100之间的随机整数。
以下是使用JavaScript编写的函数,用于生成0到100之间的随机整数:
function getRandomInt() {
return Math.floor(Math.random() * 101);
}
console.log(getRandomInt()); // 输出一个0到100之间的随机整数
使用Math.random()
方法可以生成0到1之间的随机小数,将其乘以101后取整,即可得到0到100之间的随机整数。