JavaScriptのMath.round()関数
Mathオブジェクトのround()関数は、浮動小数点乱数を受け入れ、最も近い整数値を返します。
- 指定された数値がx.5以上の場合、この関数は次の数値(x + 1)を返します
- 指定された数値がx.4以下の場合、この関数は前の数値(x-1)を返します。
- 指定された数値自体が整数の場合、この関数は同じものを返します。
構文
その構文は次のとおりです
Math.round();
例
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Math.round(2541.542); document.write("Rounded value of the given number: "+result); </script> </body> </html>
出力
Rounded value of the given number: 2542
-
JavaScriptのMath.tanh()関数
Mathオブジェクトのtanh()関数は、角度(ラジアン)を受け入れ、その双曲線正接値を返します。 構文 その構文は次のとおりです Math.tanh(90) 例 <html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Math.tanh(
-
JavaScript数値関数
JavaScript Number()関数は、引数として渡されたオブジェクト値をそれぞれの数値に変換します。 以下は、JavaScript Number()関数のコードです- 例 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> &