$floor
The$floor operator returns the largest integer value that is less than or equal to the input value.
Input
- A single numeric value
Output
- The floor of the input value (rounded down to the nearest integer)
Examples
Decimal Below .5
3
Decimal Above .5
7
Exact Integer
5
Negative Number
-4

