math物件方法

2021-08-28 05:17:11 字數 906 閱讀 3317

1.求某個數的多次方

var res = math.pow(5,10);//求5的十次方

console.log(res);

2.四捨五入

var res = math.round(3.0001);//從小數點後一位開始四捨五入

console.log(res);

3.求絕對值

var res = math.abs(10);//絕對值,只能正數

console.log(res);

4.求多個數的最大值,與最小值

var res = math.max(13,12,99,0,8);//99

console.log(res);

var res2 = math.min(13,12,99,0,8);//0

console.log(res2);

5.天花板函式(方法)

var res = math.ceil(3.0001);//4:向上取整,不足一加一

console.log(res);

6.地板函式

var res = math.floor(3.9999);//向下取整,直接去掉小數

console.log(res);//3

7.隨機數

var res = math.random();//0-1之間的隨機數;

console.log(res);

問題:求1-100之間的隨機數

var res2 = math.ceil(math.random()*100);

console.log(res2);

var num = 10;

var res = num / 3;

console.log(res);

電腦是不可能儲存無限的小數的,記憶體不夠

math物件方法

math物件方法 math.abs x 返回x的絕對值 math.ceil x 返回x的上捨入 math.floor x 返回x的下捨入 math.max 返回最大值 必須是數字 math.min 返回最小值 math.random 返回0 1之間的隨機數 math.round 返回四捨五入的值 m...

Math物件和常用方法

在js中,有一些內建物件,可以直接使用 1.math物件是js的內建物件,這個物件中儲存了一些常用的數學常量和數學計算方法 console log math pi 2.e自然對數 console log math e 3.pow 次方計算 console log math pow 2 3 4.sqr...

Math物件和Date物件的方法

js中的物件 math物件 math.pi 圓周率 math.random 生成隨機數 math.floor 向下取整 math.ceil 向上取整 math.round 四捨五入取整 math.abs 絕對值 math.max 最大值 math.min 最小值 date物件 getfullyear...