[計算]= 平方根、平方根

javascript sqrt()方法 構文

関数: 数値の平方根を返します。

#構文: Math.sqrt(x)

パラメータ: #xx 必須。 0 以上の数値である必要があります。

戻り値:

パラメータ x の平方根。 x が 0 未満の場合、NaN が返されます。

javascript sqrt()方法 例

<html>
<body>

<script type="text/javascript">

    document.write(Math.sqrt(0) + "<br />")
    document.write(Math.sqrt(1) + "<br />")
    document.write(Math.sqrt(9) + "<br />")
    document.write(Math.sqrt(0.64) + "<br />")
    document.write(Math.sqrt(-9))

</script>

</body>
</html>

インスタンスの実行 »

[インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示します