xsy-breeze-ui-rpa > BigNumber > abs
BigNumber.abs() method
Returns a BigNumber whose value is the absolute value, i.e. the magnitude, of the value of this
The return value is always exact and unrounded.
x = new BigNumber(-0.8)
x.abs() // '0.8'
Signature:
abs(): BigNumber;
Returns:
BigNumber
