JavaScriptで数値の平方根を見つけるには、組み込みのを使用できます。 Math.sqrt()
方法。 その構文は次のとおりです。
Math.sqrt(number);
ここでは、 Math.sqrt()
メソッドは数値を取り、その平方根を返します。
例:数値の平方根
// take the input from the user
const number = prompt('Enter the number: ');
const result = Math.sqrt(number);
console.log(`The square root of ${number} is ${result}`);
出力
Enter the number: 9 The square root of 9 is 3
例2:異なるデータ型の平方根
const number1 = 2.25;
const number2 = -4;
const number3 = 'hello';
const result1 = Math.sqrt(number1);
const result2 = Math.sqrt(number2);
const result3 = Math.sqrt(number3);
console.log(`The square root of ${number1} is ${result1}`);
console.log(`The square root of ${number2} is ${result2}`);
console.log(`The square root of ${number3} is ${result3}`);
出力
The square root of 2.25 is 1.5 The square root of -4 is NaN The square root of hello is NaN
- 場合 0 または正の数が渡されます
Math.sqrt()
メソッドの場合、その数の平方根が返されます。 - 負の数が渡された場合、
NaN
が返されます。 - 文字列が渡された場合、
NaN
が返されます。
Hope this helps!
Source link