JavaScript中Math是一个对象方法,方法中有很很多方便好用的数学方法。对于我们想要在网页上随机显示一些名人名言和新闻事件。可以使用js的math对象random()方法,它生成0-1的随机数。本文向大家介绍Math.random() 方法。
1、Math.random() 方法
生成0-1的随机数,包含0,不包含1,结果是浮点数。这个方法没有参数。
2、使用方法
值=Math.floor(Math.random()*可能值的总数+第一个可能的值)
3、返回值
返回一个介于 0 和 1 之间的随机数
4、使用实例
console.log(Math.random()); //0.7069207248635578 console.log(Math.random()); //0.765046694794209 console.log(Math.random()); //0.14069121642698246
原文来自:https://www.py.cn
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容