gpt4 book ai didi

javascript - 在 JavaScript 中生成两个数字之间的随机数

转载 作者:IT老高 更新时间:2023-10-28 11:10:26 27 4
gpt4 key购买 nike

有没有办法用 JavaScript 在指定范围中生成一个随机数

例如:指定范围从1到6是随机数可以是1、2、3、4、5或6

最佳答案

function randomIntFromInterval(min, max) { // min and max included 
return Math.floor(Math.random() * (max - min + 1) + min)
}

const rndInt = randomIntFromInterval(1, 6)
console.log(rndInt)

它“额外”的作用是它允许不以 1 开头的随机间隔。因此,例如,您可以获得 10 到 15 之间的随机数。灵 active 。

关于javascript - 在 JavaScript 中生成两个数字之间的随机数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4959975/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com