JavaScript Math random()方法

时间:2019-08-20 13:50:55  来源:igfitidea点击:

说明

此方法返回一个介于0(包含)和1(不包括)之间的随机数。

语法

Math.random() ;

返回值

返回一个介于0(包括)和1(不包括)之间的随机数。

示例

console.log(Math.random());                   // 0到1之间的随机浮点数。
console.log(Math.random() * 100);             // 0到100之间的随机浮点数。
console.log(Math.floor(Math.random() * 11));  // 0到10之间的一个随机整数。