forked from liang996/Javascript-Learning-notes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
js随机.txt
38 lines (26 loc) · 1000 Bytes
/
js随机.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
JavaScript 随机
1.Math.random()
Math.random() 返回 0(包括) 至 1(不包括) 之间的随机数:
实例
Math.random(); // 返回随机数
注意;Math.random() 总是返回小于 1 的数。
2.JavaScript 随机整数
Math.random() 与 Math.floor() 一起使用用于返回随机整数。
实例
Math.floor(Math.random() * 10); // 返回 0 至 9 之间的数
Math.floor(Math.random() * 11); // 返回 0 至 10 之间的数
Math.floor(Math.random() * 100); // 返回 0 至 99 之间的数
Math.floor(Math.random() * 101); // 返回 0 至 100 之间的数
Math.floor(Math.random() * 10) + 1; // 返回 1 至 10 之间的数
Math.floor(Math.random() * 100) + 1; // 返回 1 至 100 之间的数
3.一个适当的随机函数
正如你从上面的例子看到的,创建一个随机函数用于生成所有随机整数是一个好主意。
这个 JavaScript 函数始终返回介于 min(包括)和 max(不包括)之间的随机数:
实例
function getRndInteger(min, max) {
return Math.floor(Math.random() * (max - min) ) + min;
}
4.获取n-m之间的随机数公式
Math.random()*(m-n)+n
例子:我想要获取1到10之间的随机数
Math.random()*(11-1)+1