Math.abs()傳回絕對值

Javascript的Math.abs()方法:

abs()方法是一個靜態方法,只能藉由Math.abs()來呼叫,此方法會將輸入參數取絕對值後傳回。

Math.abs()的語法:

Math.abs(x)

x:數值(number)。

Math.abs()的範例:

<script type="text/javascript">
document.writeln(Math.abs(-15));
document.writeln(Math.abs(30));
document.writeln(Math.abs("-123"));
document.writeln(Math.abs("字串"));
document.writeln(Math.abs("null"));
document.writeln(Math.abs());
</script>

Math.abs()的範例輸出:

15 30 123 NaN NaN NaN

關於Math物件的其他屬性與方法,請參考:數學物件 Math

 
 

  按個讚!~支持本站!~

FB推薦載入中  

你可能會有興趣的文章