Description
Returns the absolute value of a number. The absolute value of a number is the number without its sign.
Parameters
Return Type
Number
Example
number a = abs(4); number b = abs(-4); print("a= " + a); print("b= " + b);
Print: a= 4;
b= 4;
See also
Filter by label
There are no items with the selected labels at this time.