Math.floor()最大整數

Javascript的Math.floor()方法:

floor()方法是一個靜態方法,只能藉由Math.floor()來呼叫。Math.floor()方法會傳回小於或等於給定數值(輸入參數)的最大整數。

Math.floor()的語法:

Math.floor(x)

Math.floor()的範例:

<script type="text/javascript">
document.writeln(Math.floor(-45.369));
document.writeln("<br/>");
document.writeln(Math.floor(45.369));
document.writeln("<br/>");
document.writeln(Math.floor(Math.PI));
document.writeln("<br/>");
</script>

Math.floor()的範例輸出:

-46
45

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

 
 

  按個讚!~支持本站!~

FB推薦載入中