JS工具物件Math 7個常用 方法

2022-08-28 00:39:12 字數 1587 閱讀 1985

math工具方法

目前總結 7種

math.abs(-12);   取絕對值

math.ceil(-12.99);math.floor(-12.99);   向上取整  向下取整

math.round(-12.77);  四捨五入

math.max(123,44,66,777,412,99,-999);math.min(21,-1,3,2,1235,213); 獲取一組數的 最大值 最小值

math.random(); 隨機數    常用公式   math.round(math.random()*(m-n)+n);  //m大於n

1.絕對值函式math.abs(-12);

math.abs(-12); //

結果 12

2.返回大於或者等於指定表示式的最小整數 ,向上取整math.ceil(-12.99);

math.ceil(-12.99)//

-12math.ceil(12.88)//

13

3.返回小於或者等於指定表示式的最大整數,向下取整math.floor(-12.99);

math.floor(-12.99)//

-13;

math.floor(12.99)//

12

4.四捨五入math.round(-12.77);

math.round(-12.77)//

-13math.round(-12.33)//

-12

5.取出多個引數中的最大值math.max(123,44,66,777,412,99,-999);

math.max(123,44,66,777,412,99,-999)//

777

6.取出多個引數中的最小值math.min(21,-1,3,2,1235,213);

math.min(21,-1,3,2,1235,213)//

-1

7.獲取(1-10)隨機數math.random();

//獲取(n-m)之間的隨機整數

math.round(math.random()*(m-n)+n);

math.round(math.random()*(100-1)+1);// 59

8.可返回乙個數的平方根。

math.sqrt(64);//

8

9.math.pow() 方法可返回 x 的 y 次冪的值。

math.pow(8,2)   //

64

10.math.pi

math.pi//

3.141592653589793

Math 物件和Date物件的常用屬性和方法

math物件常用方法 math.pi 圓周率 的值 math.random 生成隨機數 例如 隨機生成5位數的隨機數 function f1 return str f1 math.floor 向下取整 math.ceil 向上取整 math.round 取整,四捨五入 math.abs 絕對值 ma...

js 基礎 Math 常用工具函式

1.math.pi 弧度轉角度 2.math.random return 0,1 範圍的數 3.math.floor math.ceil 向下 向上取整 4.三角函式 math.sin cos tan 5.反三角函式 math.asin acos atan 6.角度弧度相互轉換 7.math.ata...

關於JS日期物件數學物件,字串物件常用方法

字串物件常用方法 indexof 獲得字元在字串中第一次出現的位置 從零開始算 lastindexof 獲得字元在字串中最後一次出現的位置 var str helloword var index str.indexof o var last str.lastindexof h console.log...