Contents |
Returns the absolute value of a number. The absolute value of a number is the number without the sign.
[h: val = absolutevalue(num)]You can use the following shorthand for this function:
[h: val = abs(num)][r: absolutevalue(-3)]3
[r: abs(4)]4
[r: abs(3.4)]3.4