Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Math.sqrt()

概要

引数として与えた数の平方根を返します。

構文

Math.sqrt(x)

引数

x
数値(数値に変換できる値)

詳細

number の値が負の場合、sqrt は、 NaN を返します。

sqrtMath オブジェクトの静的なメソッドなので、自ら生成した Math オブジェクトのメソッドとしてではなく、常に、Math.sqrt() として使用するようにしてください。

例:Math.sqrt の使用

以下の関数は、変数 x の平方根を返します。

function getRoot(x) {
   return Math.sqrt(x);
}

getRoot に 9 を渡した場合、このメソッドは、3 を返します。2 を渡した場合は、1.414213562373095 を返します。

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: teoli, ethertank, Potappo
 最終更新者: teoli,