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.abs()

概要

引数として与えた数の絶対値を返します。

構文

var abs = Math.abs(x);

引数

x
数値(数字)

詳細

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

例: Math.abs の動作

数ではない文字列、もしくは、undefined/空 である変数を渡した場合は、NaN を返します。null を渡した場合は、0 を返します。

Math.abs('-1');     // 1
Math.abs(-2);       // 2
Math.abs(null);     // 0
Math.abs("string"); // NaN
Math.abs();         // NaN

関連情報

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

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