Truncates the given numeric value by removing its fractional part.
trunc(value)
trunc(3.9); // returns 3
trunc(-2.7); // returns -2
trunc(5.0); // returns 5
round roundup floor ceil trunc center centerex