Syntax

abs(<possiblyNegativeNumber>)

put abs(-42) into fourtyTwo
put abs(42) into alsoFourtyTwo

Explanation

The abs function gives the absolute value of a number, i.e. it removes any minus sign at the start of a negative number, thereby making it positive.