返回列表 發帖

Math常用函式

Math.ceil()              //取整,返回發育目標數的最小整數
Math.round()          //四捨五入取整
Math.sqrt()             //計算平方根
Math.cbrt()             //計算立方根
Math.pow(3,2);       //計算乘方,下面是計算3的2次方
Math.abs();             //計算絕對值
Math.max(2.3,4.5); //計算最大值
Math.min(1,2);        //計算最小值
Math.random          //返回一個偽隨機數,該數大於等於0.0並且小於1.0

返回列表