Math.abs( number )メソッドは、引数「number」に指定した数値の絶対値を返す静的メソッド。
絶対値とは、正の符号「+」や負の符号「-」を取り除いた数のこと。
構文
Math.abs( number )
引数
- number
- 絶対値にしたい数値を指定する。
戻り値
絶対値。
サンプル
<script>
document . write( '<p>Math.abs( 2 ): ' + Math.abs( 2 ) + '</p>' );
document . write( '<p>Math.abs( +2 ): ' + Math.abs( +2 ) + '</p>' );
document . write( '<p>Math.abs( -2 ): ' + Math.abs( -2 ) + '</p>' );
document . write( '<p>Math.abs( -0.2 ): ' + Math.abs( -0.2 ) + '</p>' );
document . write( '<p>Math.abs( null ): ' + Math.abs( null ) + '</p>' );
document . write( '<p>Math.abs( \'文字列\' ): ' + Math.abs( '文字列' ) + '</p>' );
document . write( '<p>Math.abs(): ' + Math.abs() + '</p>' );
</script>
document . write( '<p>Math.abs( 2 ): ' + Math.abs( 2 ) + '</p>' );
document . write( '<p>Math.abs( +2 ): ' + Math.abs( +2 ) + '</p>' );
document . write( '<p>Math.abs( -2 ): ' + Math.abs( -2 ) + '</p>' );
document . write( '<p>Math.abs( -0.2 ): ' + Math.abs( -0.2 ) + '</p>' );
document . write( '<p>Math.abs( null ): ' + Math.abs( null ) + '</p>' );
document . write( '<p>Math.abs( \'文字列\' ): ' + Math.abs( '文字列' ) + '</p>' );
document . write( '<p>Math.abs(): ' + Math.abs() + '</p>' );
</script>
↓↓↓出力結果↓↓↓