Documentation moved.This entry is now part of the unified function reference. Open the unified page → API/nerdamer APIFunctionnerdamer.floorsrc/index.ts:782nerdamer.floor(x: ExpressionInput): ExpressionRounds a number down to the nearest integer (floor function).ParametersNameTypeDescriptionxExpressionInputThe expression to round down.ReturnsExpression — The greatest integer less than or equal to `x`.Examplesfloor('3.7').text() // "3" floor('-2.3').text() // "-3" floor(5).text() // "5" floor('x').text() // "floor(x)"