math 物件用於執行數學任務。
math 物件並不像 date 和 string 那樣是物件的類,因此沒有建構函式 math()。
js 中math物件的常用方法
// 1.基本方法:
math.
round(5
/2)// 對引數四捨五入為最接近的整數 => 3
math.
ceil
(x)// 向上取整,有小數就整數部分加1 math.ceil(2.2) => 3, math.ceil(2.9) => 3
math.
floor(5
/2)// 對引數進行下捨入為整數 => 2
math.
pow(x, y)
// 返回 x 的 y 次冪 math.pow(2, 5) => 32
math.
random()
// 返回 0 ~ 1 之間的隨機數
math.
max(x, y)
// 返回給定引數中的最大值, 引數可以是多個值 math.max(0, 160, 35, 20, -8, -100) => 160
math.
min(x, y)
// 返回給定引數中的最小值,引數可以是多個值 math.min(0, 160, 35, 20, -8, -100) => 100
// 2.組合方法:
const numbers =[5
,6,2
,3,7
] math.max.
(null
, array)
// 返回陣列的最大值
math.min.
(null
, array)
// 返回陣列的最小值
js Math常用方法
向上取整,有小數就整數部分加1 math.ceil 5 2 四捨五入.math.round 5 2 向下取整 math.floor 5 2 abs x 返回數的絕對值 acos x 返回數的反余弦值 asin x 返回數的反正弦值 atan x 以介於 pi 2 與 pi 2 弧度之間的數值來返回 ...
js Math物件常用的函式
math.pi 約等於3.14159 alert math.round 3.5 四捨五入 4 alert math.random 0 1之間隨機數 alert math.max 10,20,30 返回較大數 30 alert math.min 10,20,30 返回較小數 10 alert math...
JS Math物件中常用屬性和方法總結
math物件常用屬性 math.e屬性表示自然對數的底數 或稱為基數 e,約等於 2.718。math.pi 表示乙個圓的周長與直徑的比例,約為 3.14159 math.sqrt2 屬性表示 2 的平方根,約為 1.414 math.log10e 屬性表示以 10 為底數,e 的對數,約為 0.4...