Calculates the ceil of a number
The number to calculate the ceil for.
The smallest integer greater than or equal to the given number. *
ceil(-4.6); // Returns -5 ceil(10.5); // Returns 11 Copy
ceil(-4.6); // Returns -5 ceil(10.5); // Returns 11
Generated using TypeDoc
Calculates the ceil of a number