sqrt

種類メソッド
書式 Math.sqrt(値)
解説
平方根を返します。
サンプルコード
function sampleCode()
{
txtField.data = Math.sqrt(5);
}
sampleCode();
実際のスクリプトをダウンロード