JS Mathオブジェクト
1624 ワード
二、Mathオブジェクト
Mathは主にいくつかの数学上の常用演算をします.例えば、平方、絶対値、開方、三角関数などです.
2.1共通属性 Math.PI:πの値 Math.E:自然対数の基数: Math.abs(x):xの絶対値を返します. Math.max(任意の数値):着信値の最大値 を返します. Math.min(任意の数値):着信値の最小値 を返します. Math.ceirl(number):number以上の最小整数(上向き整数) を返します. Math.flor:number以下の最大整数を返します. Math.round(number):四捨五入 Math.pow(x,y):は$x^y$ を返します. Math.randowm():0-1間のランダム小数を返します.0は含まれていますが、1 は含まれていません. Math.sqrt(x):xの平方根 を返します. Math.sin(x)正弦波、Math.com(x)コサイン、Math.tan(x)正接 三角関数のパラメータはラジアンです.
Mathは主にいくつかの数学上の常用演算をします.例えば、平方、絶対値、開方、三角関数などです.
2.1共通属性
console.log(Math.PI); // 3.141592653589793
console.log(Math.E); // 2.718281828459045
2.2一般的な方法console.log(Math.abs(5)); // 5
console.log(Math.abs(-5)); // 5
console.log(Math.max(40, 6, 80)); // 80
console.log(Math.min(40, 6, 80)); // 6
console.log(Math.ceil(13.1)); // 14
console.log(Math.ceil(-13.1)); // -13
console.log(Math.floor(13.1)); // 13
console.log(Math.floor(-13.1)); // -14
console.log(Math.round(13.4)); // 13
console.log(Math.round(13.5)); // 14
console.log(Math.round(-13.5)); // -13
console.log(Math.round(-13.6)); // -14
console.log(Math.pow(2, 3)); // 8
console.log(Math.random());
console.log(Math.sqrt(4)); // 2
console.log(Math.sin(Math.PI / 4)); // 45
console.log(Math.cos(Math.PI / 4)); // 45
console.log(Math.tan(Math.PI / 4)); // 45