js 生成随机数

生成随机整数 [0, 9]
console.log(parseInt(Math.random() * 10, 10))
生成[1,max]的随机数
// max - 期望的最大值
console.log(parseInt(Math.random()*max,10)+1)

生成[0,max]到任意数的随机数

// max - 期望的最大值
console.log(parseInt(Math.random()*(max+1),10))

生成[min, max]的随机数

// max - 期望最大值
// mix - 期望最小值
console.log(parseInt(Math.random()*(max-min+1)+min,10))

你可能感兴趣的:(js 生成随机数)