JS 中常用的 Math 方法

2022-09-05 08:09:12 字數 845 閱讀 1116

1. 取最大值 和 取最小值

math.min()  取一組數值的最小值

math.max()  取一組數值的最大值

alert( math.min(2,4,3,6,3,8,0,1,3) );                   //  最小值

alert( math.max(4,7,8,3,1,9,6,0,3,2) ); // 最大值

2. 捨入方法

math.round()  標準捨入,會把數值四捨五入為最接近的整數

math.ceil()   向上捨入,會把數值向上捨入為最接近的整數

math.floor()  向下捨入,會把數值向下捨入為最接近的整數

3. 返回隨機數

math.random()  返回乙個介於 0 到 1 的隨機數,不包括 0 和 1

如果想大於這個範圍的話,可以套用一下公式:

值= math.floor(math.random() * 總數+ 第乙個值)

alert( 

math.floor(math.random() * 10 + 5) )      

// 5-14之間的任意數

4. 返回絕對值

math.abs()  返回傳入數值的絕對值

alert( math.abs(12.34) )    // 返回 12.34 的絕對值 12

js中常用的Math方法

math.min 用於確定一組數值中的最小值。math.max 用於確定一組數值中的最大值。alert math.min 2,4,3,6,3,8,0,1,3 最小值alert math.max 4,7,8,3,1,9,6,0,3,2 最大值 2.捨入方法 math.ceil 執行向上捨入,即它總是將...

js的Math常用方法

round document.write math.round 0.60 document.write math.round 0.50 document.write math.round 0.49 document.write math.round 4.40 document.write math....

Js 中常用方法

一 獲取唯一值 2014 12 23 1 function newguid 7return guid 8 view code bttup click function beforesend function complete function success function data,status...