Beware!
round(3.21); // returns 3
round(3.5); // returns 4
round(3.70); // returns 4
It rounds it
floor(3.21); // returns 3
floor(3.5); // returns 3
floor(3.70); // returns 3
It removes the decimal part without rounding the number
ceil(3.21); // returns 4
ceil(3.5); // returns 4
ceil(3.70); // returns 4
It returns the closest integer bigger than the number given