Abs

From NSB App Studio
Jump to navigation Jump to search

This function is for BASIC compatibility. It is not available in pure JavaScript projects.

Abs(number)

Description

Abs returns the absolute value, or unsigned magnitude, of a numeric expression. The required parameter, number, is any valid numeric expression. If number is NULL, Abs returns NULL.

Example (BASIC)

Rem Abs Example
'Abs returns the absolute value of a number.
Print "Abs(-2) = " & Abs(-2)
Print "Abs(2) = " & Abs(2)

Output

Abs(-2) = 2
Abs(2) = 2

Related Items

Sgn