JavaScript Reference/Javascript Methods/ceil

Материал из Web эксперт
Версия от 08:22, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"ceil()" Example

    
<html>
<body>
<button onclick="alert(Math.ceil(1.1));">CEIL</button>
</body>
</html>



"ceil()" is applied to

+----------------+--------------------------------------------------------------+
| Applied_To     |Math                                                          |
+----------------+--------------------------------------------------------------+



"ceil()" Syntax, Parameters and Note

Note:
Rounds the number up to the nearest integer.
    
Syntax:
    
Math.ceil(param1)

Parameters:
    param1   Required; the number to convert.