floor
Rounds an input down to the nearest whole number. floor
will also work on a string that only contains a number.
Input
{{ 1.2 | floor }}
{{ 2.0 | floor }}
{{ 183.357 | floor }}
{{ "3.5" | floor }}
Output
1
2
183
3
Rounds an input down to the nearest whole number. floor
will also work on a string that only contains a number.
Input
{{ 1.2 | floor }}
{{ 2.0 | floor }}
{{ 183.357 | floor }}
{{ "3.5" | floor }}
Output
1
2
183
3