首页
技术博客
登录
6mi
u
盘
搜
搜 索
技术博客
前端面试常考题(JavaScript)
前端面试常考题(JavaScript)
tech
2022-07-06
247
使用math对象生成一个1到100之间的随机数。 Math.random() 为0到1之间的随机数(包括0,不包括1)[0, 1) Math.round(n) 为n四舍五入后的整数 Math.ceil(n) 为大于等于n的最小整数 Math.floor(n) 为小于等于n的最大整数 console
.
log
(
Math
.
floor
(
Math
.
random
(
)
*
100
)
+
1
)
;
转载请注明原文地址:https://tech.qufami.com/read-177.html
最新回复
(
0
)