JavaScriptのMath.sqrt()関数
Mathオブジェクトのsqrt()関数は数値を受け取り、指定された数値の平方根値を返します。
構文
その構文は次のとおりです
Math.sqrt();
例
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Math.sqrt(169); document.write("Square root value of the given number: "+result); </script> </body> </html>
出力
Square root value of the given number: 13
-
JavaScriptのMath.sin()関数
Mathオブジェクトのsin()関数は、角度(ラジアン)を受け入れ、その正弦値を返します。 構文 その構文は次のとおりです Math.sin(90) 例 <html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Math.sin(90); &
-
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" /> &