1. 程式人生 > >JS中Math函式的常用方法

JS中Math函式的常用方法

Math 是數學函式,但又屬於物件資料型別 typeof Math => ‘object’ console.dir(Math) 檢視Math的所有函式方法。 1,Math.abs() 獲取絕對值

Math.abs(-12) = 12

2,Math.ceil() and Math.floor() 向上取整和向下取整

3,Math.round() 四捨五入 注意:正數時,包含5是向上取整,負數時包含5是向下取整。

Math.round(-16.3) = -12
Math.round(-16.5) = -12
Math.round(-16.51) = -13

4,Math.random()

取[0,1)的隨機小數 案例1:獲取[0,10]的隨機整數

Math.round(Math.random()*10)

案例2:獲取[n,m]之間的隨機整數

Math.round(Math.random()*(m-n)+n)

5,Math.max() and Max.min() 獲取一組資料中的最大值和最小值

6,Math.PI 獲取圓周率π 的值

7,Math.pow() and Math.sqrt() Math.pow()獲取一個值的多少次冪 Math.sqrt()對數值開方

在這裡插入圖片描述