DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript基礎知識 >> JavaScipt中的Math.ceil() 、Math.floor() 、Math.round() 三個函數的理解
JavaScipt中的Math.ceil() 、Math.floor() 、Math.round() 三個函數的理解
編輯:JavaScript基礎知識     

首先還是看看JavaScript: The Definitive Guide, 4th Edition中對三個函數的定義。

Math.ceil(): round a number up

Arguments: Any numeric value or expression

Returns: The closest integer greater than or equal to x.

-----------------------------------------------------------------------------------------------

Math.floor(): round a number down

Arguments: Any numeric value or expression

Returns: The closest integer less than or equal to x.

-----------------------------------------------------------------------------------------------

Math.round(): round to the nearest integer

Arguments: Any number.

Returns: The integer closest to x.

 

以前一直會三個函數的使用產生混淆,現在通過對三個函數的原型定義的理解,其實很容易記住三個函數。

現在做一個總結:

1. Math.ceil()用作向上取整。

2. Math.floor()用作向下取整。

3. Math.round() 我們數學中常用到的四捨五入取整。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved