Skip to content
分类目录:

JavaScript Math 对象与常用方法

Post date:
Author:
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

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注