597 B
597 B
title | description | menu | weight | ||||||
---|---|---|---|---|---|---|---|---|---|
math.floor() function | The math.floor() function returns the greatest integer value less than or equal to `x`. |
|
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