时间:2021-07-01 10:21:17 帮助过:880人阅读
js生成1到100的随机数
js生成随机数使用math.random()函数
Math.random()
具体实现:
1、定义一个random()函数,原理是 随机数和最大值减最小值的差相乘 最后再加上最小值。
function random(min, max) { return Math.floor(Math.random() * (max - min)) + min; }
2、使用方法
for (var i = 1; i <= 10; i++) { console.log(random(1, 100)); }
3、效果图
本文来自 js教程 栏目,欢迎学习!
以上就是js生成1到100的随机数的详细内容,更多请关注Gxlcms其它相关文章!