Returns the integer value closest to the given value. The resulting integer is equal to or less than, but not greater than the given value. If value is positive the fractional portion of the number is truncated. If the value is negative it is rounded down to the next lowest whole number.
Syntax
INT(number)
Arguments
number - any number.
Examples
INT(3.333) = 3.
INT(-3.333) = -4.