.invabs()

Description

Invabs returns the negative version of its input value, if the input is positive, it becomes negative, if its negative it stays the same

Parameters

Invabs takes no parameters

Usage On Numbers

log 10.invabs()
// -10

log -10.invabs()
// -10

Last updated