Math ceil() Math.floor(),Math.round()用法

Math.ceil()
 
Math.ceil(x)
參數:
  • x:一個數值。
返回值: 返回大於或等於x,而且與之最接近的整數。
注: 若是x是正數,則把小數;若是x是負數,則把小數
例:
<script type="text/javascript">
document.write( Math.ceil(1.2)+", "+Math.ceil(1.8)+", "+Math.ceil(-1.2)+", "+Math.ceil(-1.8) );
</script>
輸出結果爲:
document.write( Math.ceil(1.2)+", "+Math.ceil(1.8)+", "+Math.ceil(-1.2)+", "+Math.ceil(-1.8) ); 2, 2, -1, -1
 

 

Math.floor()
 
Math.floor(x)
參數:
  • x:一個數值。
返回值: 返回小於或等於x,而且與之最接近的整數。
注: 若是x是正數,則把小數;若是x是負數,則把小數
例:
<script type="text/javascript">
document.write( Math.floor(1.2)+", "+Math.floor(1.8)+", "+Math.floor(-1.2)+", "+Math.floor(-1.8) );
</script>
輸出結果爲:
document.write( Math.floor(1.2)+", "+Math.floor(1.8)+", "+Math.floor(-1.2)+", "+Math.floor(-1.8) ); 1, 1, -2, -2
 

 

 

Math.round()
 
Math.round(x)
參數:
  • x:一個數值。
返回值: x最接近的整數。
例:
<script type="text/javascript">
document.write( Math.round(1.2)+", "+Math.round(1.8)+", "+Math.round(-1.2)+", "+Math.round(-1.8) );
</script>
輸出結果爲:
document.write( Math.round(1.2)+", "+Math.round(1.8)+", "+Math.round(-1.2)+", "+Math.round(-1.8) ); 1, 2, -1, -2

Math.abs(x)獲得一個數值的絕對值javascript

相關文章
相關標籤/搜索