JavaScriptのMath.imul()関数
Mathオブジェクトのimul()関数は、2つの数値を受け入れ、指定された数値のCのような32ビット乗算の結果を返します。
構文
その構文は次のとおりです
Math.imul(47, 56);
例
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Math.imul(47, 56); document.write("Result: "+result); </script> </body> </html>
出力
Result: 2632
-
JavaScriptのMath.cosh()関数
Mathオブジェクトのcosh()関数は、角度(ラジアン)を受け入れ、その双曲線正弦値を返します。 構文 その構文は次のとおりです Math.cosh(90) 例 <html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Math.cosh(
-
JavaScriptのparseFloat()関数
parseFloat()関数は、2つのパラメーターを受け入れます。1つは数値を表す文字列で、もう1つは基数を表す数値であり、指定された基数の整数を返します。 構文 その構文は次のとおりです num.parseFloat('4524', 8); 例 <html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"