503 B
503 B
title | description | menu | weight | ||||||
---|---|---|---|---|---|---|---|---|---|
math.abs() function | The math.abs() function returns the absolute value of `x`. |
|
301 |
The math.abs()
function returns the absolute value of x
.
Output data type: Float
import "math"
math.abs(x: -1.22)
// Returns 1.22
Parameters
x
The value used in the operation.
Data type: Float
Special cases
math.abs(x: ±Inf) // Returns +Inf
math.abs(x: NaN) // Returns NaN