Math函式的舉例(摘自js權威指南)

2021-09-01 22:59:52 字數 612 閱讀 1845

math.pow(2,53)    //2的53次冪

math.round(.6) 四捨五入

math.ceil(.6) 向上取整

math.floor(.6) 線下求整

math.abs(-5) //5:求絕對值

math.max(a,b,c) //返回最大值

math.min(a,b,c) //返回最小值

math.random() //生成大於0小於1的偽隨機數

math.pi //π圓周率

math.e //e自然對數的底數

math.sqrt(3) //3的平方根

math.pow(3,1/3) //3的立方根

math.sin(0) //三角函式,還有math.cos,math.atan等

math.log(10) //10的自然對數

math.log(100)/math.ln10 //以10為底100的對數

math.log(512)/math.ln2 //以2為底512的對數

math.exp(3) //e的三次冪

js中Math常用的函式

js中有許多的內建物件。其中,math物件封裝了許多常用的數學函式。對於求取5 9之間的數字 parseint math.random 5 5 從5到9的隨機數字 獲取乙個從0 4的隨機數 var num math.random 5 讓num 5 變為從 5 9的隨機數 num num 5 取整 n...

js中math函式的常用方法

math.abs j絕對值 math.ceil 整數 向上取整和向下取整 console.log math.ceil 12.95 13 console.log math.floor 12.3 12 math.round 四捨五入 注意 正數時,包含5是向上取整,負數時包含5是向下取整。math.ra...

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...