一、什么是Math对象
1.1 Math对象的方法
方法 | 描述 |
---|---|
ceil(x) | 对数进行向上取整。 |
floor(x) | 对数进行向下取整。 |
max(x,y) | 返回 x 和 y 中的最高值。 |
min(x,y) | 返回 x 和 y 中的最低值。 |
pow(x,y) | 返回 x 的 y 次幂。 |
random() | 返回 0 ~ 1 之间的随机数。 |
round(x) | 把数四舍五入为最接近的整数。 |
sqrt(x) | 返回数的平方根。 |
max()
方法可返回两个指定的数中带有较大的值的那个数。
语法
Math.max(x...)
参数 | 描述 |
---|---|
x | 0 或多个值。 |
返回值
参数中最大的值。如果没有参数,则返回 -Infinity。如果有某个参数为 NaN,或是不能转换成数字的非数字值,则返回 NaN。
// max() 示例:
document.write(Math.max(5,7) + "<br />") // 7
document.write(Math.max(-3,5) + "<br />") // 5
document.write(Math.max(-3,-5) + "<br />") // -3
document.write(Math.max(7.25,7.3)) // 7.3
min()
方法可返回指定的数字中带有最低值的数字。
语法
Math.min(x,y)
参数 | 描述 |
---|---|
x | 0 或多个值。在 ECMASCript v3 之前,该方法只有两个参数。 |
返回值
参数中最小的值。如果没有参数,则返回 Infinity。如果有某个参数为 NaN,或是不能转换成数字的非数字值,则返回 NaN。
// min() 示例:
document.write(Math.min(5,7) + "<br />") // 5
document.write(Math.min(-3,5) + "<br />") // -3
document.write(Math.min(-3,-5) + "<br />") // -5
document.write(Math.min(7.25,7.3)) // 7.25
ceil()
方法可对一个数进行上舍入。
语法
Math.ceil(x)
参数 | 描述 |
---|---|
x | 必需。必须是一个数值。 |
返回值
大于等于 x,并且与它最接近的整数。
说明
ceil() 方法执行的是向上取整计算,它返回的是大于或等于函数参数,并且与之最接近的整数。
// ceil() 示例:
document.write(Math.ceil(0.60) + "<br />") // 1
document.write(Math.ceil(0.40) + "<br />") // 1
document.write(Math.ceil(5) + "<br />") // 5
document.write(Math.ceil(5.1) + "<br />") // 6
document.write(Math.ceil(-5.1) + "<br />") // -5
document.write(Math.ceil(-5.9)) // -5
floor()
方法可对一个数进行下舍入。
语法
Math.floor(x)
参数 | 描述 |
---|---|
x | 必需。任意数值或表达式。 |
返回值
小于等于 x,且与 x 最接近的整数。
说明
floor() 方法执行的是向下取整计算,它返回的是小于或等于函数参数,并且与之最接近的整数。
// floor() 示例:
document.write(Math.floor(0.60) + "<br />") // 0
document.write(Math.floor(0.40) + "<br />") // 0
document.write(Math.floor(5) + "<br />") // 5
document.write(Math.floor(5.1) + "<br />") // 5
document.write(Math.floor(-5.1) + "<br />") // -6
document.write(Math.floor(-5.9)) // -6
round()
方法可把一个数字舍入为最接近的整数。
语法
Math.round(x)
参数 | 描述 |
---|---|
x | 必需。必须是数字。 |
返回值
与 x 最接近的整数。
说明
对于 0.5,该方法将进行上舍入。
例如,3.5 将舍入为 4,而 -3.5 将舍入为 -3。
// round() 示例:
document.write(Math.round(0.60) + "<br />") // 1
document.write(Math.round(0.50) + "<br />") // 1
document.write(Math.round(0.49) + "<br />") // 0
document.write(Math.round(-4.40) + "<br />") // -4
document.write(Math.round(-4.60)) // -5
random()
方法可返回介于 0 ~ 1 之间的一个随机数。
语法
Math.random()
返回值
0.0 ~ 1.0 之间的一个伪随机数。
// random() 示例:
document.write(Math.random())
// 0-10之间的随机数
document.write(Math.random()*10)
// 0-100之间的随机数
document.write(Math.random()*100)
// 0-3之间的随机数
document.write(Math.random()*3)
// 20-30之间的随机数
???思考🤔
abs()
方法可返回数的绝对值。
语法
Math.abs(x)
参数 | 描述 |
---|---|
x | 必需。必须是一个数值。 |
返回值
x 的绝对值。
// abs() 示例:
document.write(Math.abs(7.25) + "<br />") // 7.25
document.write(Math.abs(-7.25) + "<br />") // 7.25
document.write(Math.abs(7.25-10)) // 2.75
pow()
方法可返回 x 的 y 次幂的值。
语法
Math.pow(x,y)
参数 | 描述 |
---|---|
x | 必需。底数。必须是数字。 |
y | 必需。幂数。必须是数字。 |
返回值
x 的 y 次幂。
// pow() 示例:
document.write(Math.pow(2,3) + "<br />") // 8
document.write(Math.pow(-2,3) + "<br />") // -8
document.write(Math.pow(2,4) + "<br />") // 16
document.write(Math.pow(-2,4) + "<br />") // 16
sqrt()
方法可返回一个数的平方根。
语法
Math.sqrt(x)
参数 | 描述 |
---|---|
x | 必需。必须是大于等于 0 的数。 |
返回值
参数 x 的平方根。如果 x 小于 0,则返回 NaN。
// sqrt() 示例:
var a=Math.sqrt(0); // 0
var b=Math.sqrt(1); // 1
var c=Math.sqrt(9); // 3
var d=Math.sqrt(0.64); // 0.8
var e=Math.sqrt(-9); // NaN
总结
以上就是今天带你走进从零认识JavaScript到精髓(十一)JavaScript的Math对象认识
会持续更新中…
原创不易,期待您的点赞关注与转发评论😜😜😜