Math.random
时间: 2024-02-22 08:29:57 浏览: 69
Math,random 随机数
4星 · 用户满意度95%
`Math.random()` 是 JavaScript 中的一个函数,它返回一个介于 0 到 1 之间的随机数(包括 0,不包括 1)。它可以用于生成随机数,比如在游戏中生成随机数来模拟掷骰子或者抽奖等场景。
示例:
```javascript
// 生成一个介于 0 到 1 之间的随机数
let randomNumber = Math.random();
console.log(randomNumber);
// 生成一个介于 1 到 6 之间的随机整数,模拟掷骰子
let diceNumber = Math.floor(Math.random() * 6) + 1;
console.log(diceNumber);
// 生成一个介于 0 到 100 之间的随机整数
let randomNumber = Math.floor(Math.random() * 101);
console.log(randomNumber);
```
阅读全文