英 [æbz]

abbr.アクリロニトリル-ブタジエン-スチレン アクリロニトリル-ブタジエン-スチレン;不在 不在;吸収 吸収;吸収 (ent) 吸収

JavaScript abs() メソッド 構文

関数: 数値の絶対値を返します。

構文: Math.abs(x)
パラメータ: #xx 必須。数値である必要があります。

戻り値: x の絶対値。

JavaScript abs() メソッド 例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>

<script type="text/javascript">
//取得正数和负数的绝对值
    document.write(Math.abs(7.25) + "<br />")
    document.write(Math.abs(-7.25) + "<br />")
    document.write(Math.abs(7.25-10))

</script>

</body>
</html>

インスタンスの実行 »

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