xsy-breeze-ui-rpa > BigNumber > valueOf
BigNumber.valueOf() method
As toString, but does not accept a base argument and includes the minus sign for negative zero.
``ts x = new BigNumber('-0') x.toString() // '0' x.valueOf() // '-0' y = new BigNumber('1.777e+457') y.valueOf() // '1.777e+457' ```
Signature:
valueOf(): string;
Returns:
string
