docs-v2/content/v2.0/reference/flux/functions/math/floor.md

597 B

title description menu weight
math.floor() function The math.floor() function returns the greatest integer value less than or equal to `x`.
v2_0_ref
name parent
math.floor Math
301

The math.floor() function returns the greatest integer value less than or equal to x.

Output data type: Float

import "math"

math.floor(x: 1.22)

// Returns 1.0

Parameters

x

The value used in the operation.

Data type: Float

Special cases

math.floor(±0)   // Returns ±0
math.floor(±Inf) // Returns ±Inf
math.floor(NaN)  // Returns NaN