Returns the smallest integer greater than or equal to the given numeric value.
ceil(value)
ceil(3.2); // returns 4
ceil(3.0); // returns 3
ceil(-1.2); // returns -1
round roundup floor ceil trunc center centerex