Math.floor()最大整數
- 詳細內容
- 分類:Javascript
- 發佈:2013-05-09, 週四 20:30
- 點擊數:3309
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>