ceiling

We’d love to hear your thoughts on the next set of proposals for the JavaScript language. You can find a description of the proposals here.
Please take two minutes to fill out our short survey.

The ceiling function evaluates a decimal number and returns the smallest integer greater than or equal to the decimal number.

Syntax

ceiling( number )

Parameters

number

The number to be evaluated.

Return value

The nearest integer greater than or equal to number.

for example:

ceiling (5.2) = 6

ceiling (-5.2) = -5

Specifications

Gecko support

Supported.