这里使用 JavaScript 自带的几种数学函数
Math.random()
随机返回区间 [0, 1) 内的小数Math.round(num)
取 num 四舍五入后的整数Math.ceil(num)
将 num 向上取整Math.floor(num)
将 num 向下取整
我们利用 Math.random()
和 Math.floor()
两个函数来构建函数。
1 | var chars = [ |
最近热读
扫码关注公众号,或搜索公众号“温欣爸比”
及时获取我的最新文章