分类目录: html5
JavaScript Math 对象与常用方法
Post date:
Author: cyy
标签: javascript, Math 对象
Number of comments: no comments
JavaScript Math 对象与常用方法
方法 | 功能 |
round | 四舍五入 |
random | 返回0-1随机数字 |
max | 返回最大值 |
min | 返回最小值 |
abs | 返回绝对值 |
例如:
Math.round(2.5) = 3
Math.round(2.4) = 2
Math.random() = 0.784241991550694
parseInt(Math.random() * 10) = 8 // 返回10以内数字
Math.max(10,20,4,99) = 99
let arr = [10,20,4,99]
Math.max(...arr) = 99
Math.min(10,20,4,99) = 4
let arr = [10,20,4,99]
Math.min(...arr) = 4
Math.abs(-10) = 10