floor(x: f64) → f64

Category: [math](builtinsmath)_

Round down to the nearest integer.

ParameterTypeDescriptionRemarks
xf64The input value.
returnsf64The result.
wcl
floor(3.9)   // round down to a whole number → 3.0