Math
.
random
(
)
*
(
m
-
n
)
+
n
random函数语法
Math
.
random
(
)
;
random函数返回值
返回0和1之间的伪随机数,可能为0,但总是小于1,[0,1)
返回10-20的随机数
Math
.
random
(
)
*
(
20
-
10
)
+
10
返回指定范围的随机数(n-m之间)的公式
Math
.
random
(
)
*
(
m
-
n
)
+
n
Math
.
random
(
)
*
(
m
-
n
)
+
n
Math
.
random
(
)
;
返回0和1之间的伪随机数,可能为0,但总是小于1,[0,1)
返回10-20的随机数
Math
.
random
(
)
*
(
20
-
10
)
+
10
返回指定范围的随机数(n-m之间)的公式
Math
.
random
(
)
*
(
m
-
n
)
+
n