js中math函式的常用方法

2021-10-03 06:02:19 字數 434 閱讀 4444

math.abs()j絕對值

math.ceil() 整數 向上取整和向下取整

console.log(math.ceil(12.95));//13

console.log(math.floor(12.3));//12

math.round() 四捨五入

注意:正數時,包含5是向上取整,負數時包含5是向下取整。

math.random() 隨機數 獲取[0,10]的隨機整數

console.log(parseint(math.random()*10));//未包含10

console.log(parseint(math.random()*10+1));//包含10

math.max ()最大最小值

math.pi

math.pow()獲取乙個值的次冪

math.sqrt()開方

JS中Math函式的常用方法

math是數學函式,但又屬於物件資料型別typeof math object console.dir math 檢視math的所有函式方法。1,math.abs 獲取絕對值 math.abs 12 122,math.ceil and math.floor 向上取整和向下取整 3,math.round...

JS中Math函式的常用方法

console.dir math 可檢視math的所有函式方法 math.abs 獲取絕對值 math.abs 12 12math.ceil and math.floor 向上取整和向下取整 console.log math.ceil 12.03 13 console.log math.ceil 1...

JS中Math函式的常用方法

math是數學函式,但又屬於物件資料型別typeof math object console.dir math 檢視math的所有函式方法。1,math.abs 獲取絕對值 math.abs 12 12 2,math.ceil and math.floor 向上取整和向下取整 console.log...