js 随机数

Math.floor(Math.random() * (max - min + 1)) + min

例如 95 - 100 的随机数

Math.floor(Math.random() * (100 - 95 + 1)) + 95

小数 例如 0.9 - 1

Math.floor(Math.random() * (100 - 90 + 1) + 90) / 100
原文地址:https://www.cnblogs.com/bruce-gou/p/13131635.html