1. 程式人生 > 其它 >JS中Math函式的常用方法

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(Math.ceil(12.03));//13
 console.log(Math.ceil(12.92));//13
 console.log(Math.floor(12.3));//12
 console.log(Math.floor(12.9));//12

3,Math.round()

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

1、Math.round(-16.3) = -16
2、Math.round(-16.5) = -16
3、Math.round(-16.51) = -17

4,Math.random()取[0,1)的隨機小數
案例1:獲取[0,10]的隨機整數

console.log(parseInt(Math.random()*10));//未包含10 console.log(parseInt(Math.random()*10+1));//包含10

案例2:獲取[n,m]之間的隨機整數

Math.round(Math.random()*(m-n)+n)

5,Math.max() and Max.min()獲取一組資料中的最大值和最小值

console.log(Math.max(10,1,9,100,200,45,78));
console.log(Math.min(10,1,9,100,200,45,78));

6,Math.PI獲取圓周率π 的值

console.log(Math.PI);

7,Math.pow() and Math.sqrt()

Math.pow()獲取一個值的多少次冪
Math.sqrt()對數值開方

1.Math.pow(10,2) = 100;
2.Math.sqrt(100) = 10;
 1 //例子:自己定義一個物件,實現系統的max的方法
2 function Mymax() { 3 //添加了一個方法 4 this.getMax = function () { 5 //假設這個數是最大值 6 var max = arguments[0]; 7 for (var i = 0; i < arguments.length; i++) { 8 if (max < arguments[i]) { 9 max = arguments[i]; 10 } 11 } 12 return max; 13 }; 14 } 15 // 例項物件 16 var my = new Mymax(); 17 console.log(my.getMax(9, 5, 6, 32)); 18 console.log(Math.max(9, 5, 6, 32));

本文來自學習小花,作者:aixuexi666888,轉載請註明原文連結:https://www.cnblogs.com/aixuexi666888/p/15551034.html