Math常用方法

2021-10-04 16:05:26 字數 718 閱讀 6715

math.abs(x) 函式返回指定數字 「x「 的絕對值

math.abs('-1');     // 1

math.abs(-2);       // 2

math.acos(-1);  // 3.141592653589793

math.ceil() 函式返回大於或等於乙個給定數字的最小整數。

console.log(math.ceil(7.004));

// expected output: 8

math.floor() 返回小於或等於乙個給定數字的最大整數。

math.max() 函式返回一組數中的最大值。

const array1 = [1, 3, 2];

console.log(math.max(...array1));

// expected output: 3

math.min() 返回零個或更多個數值的最小值。

math.random() 函式返回乙個浮點,  偽隨機數在範圍從0到小於1,也就是說,從0(包括0)往上,但是不包括1(排除1),然後您可以縮放到所需的範圍。實現將初始種子選擇到隨機數生成演算法;它不能被使用者選擇或重置。

function getrandom()

math.sqrt()函式返回乙個數的平方根

math.sqrt(9); // 3

Math 常用方法

捨掉小數取整 math.floor 2 2 捨掉小數取整 math.floor 2.1 2 捨掉小數取整 math.floor 2.1 3 捨掉小數取整 math.floor 2.5 3 捨掉小數取整 math.floor 2.9 3 四捨五入取整 math.rint 2 2 四捨五入取整 math...

Math常用方法

1.abs 絕對值 2.acos,asin,atan,cos,sin,tan 三角函式 3.sqrt 平方根 4.pow double a,double b a的b次冪 5.max double a,double b 取大值 6.min double a,double b 取小值 7.ceil do...

Math 常用方法

math.abs x 函式返回指定數字 x 的絕對 math.abs 1 1 math.abs 1 1 math.abs 1 1 math.abs str nan math.abs null 0 math.abs nanmath.ceil x 函式返回大於或等於乙個給定數字 x 的最小整數。math...