javascript 如何生成不重复的随机数

2024-11-22 07:59:20
推荐回答(1个)
回答1:

Math.random() 函数返回一个浮点,  伪随机数在范围[0,1)

得到两数之间的随机数:
function getRandomArbitrary(min, max) {
  return Math.random() * (max - min) + min;}
得到一个两数之间的随机整数,包括两个数在内:
function getRandomIntInclusive(min, max) {
  min = Math.ceil(min);
  max = Math.floor(max);
  return Math.floor(Math.random() * (max - min + 1)) + min;