Returns the exponent, Integer, -1e+6 to 1e+6 inclusive
Returns the sign, -1 or 1
Returns a Big number whose value is the absolute value, i.e. the magnitude, of this Big number.
Returns a Big number whose value is the value of this Big number divided by n.
If the result has more fraction digits than is specified by Big.DP, it will be rounded to Big.DP decimal places using rounding mode Big.RM.
Returns a Big number whose value is the value of this Big number modulo n, i.e. the integer remainder of dividing this Big number by n.
The result will have the same sign as this Big number, and it will match that of Javascript's % operator (within the limits of its precision) and BigDecimal's remainder method.
Return a new Big whose value is the value of this Big negated.
Returns a Big number whose value is the value of this Big number raised to the power exp.
If exp is negative and the result has more fraction digits than is specified by Big.DP, it will be rounded to Big.DP decimal places using rounding mode Big.RM.
The power to raise the number to, -1e+6 to 1e+6 inclusive
Return a new Big whose value is the value of this Big rounded to a maximum precision of sd significant digits using rounding mode rm, or Big.RM if rm is not specified.
Significant digits: integer, 1 to MAX_DP inclusive.
Optional
rm: RoundingModeRounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).
Returns a Big number whose value is the value of this Big number rounded using rounding mode rm to a maximum of dp decimal places.
Optional
dp: numberDecimal places, 0 to 1e+6 inclusive
Optional
rm: RoundingModeRounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).
Returns a string representing the value of this Big number in exponential notation to a fixed number of decimal places dp.
If the value of this Big number in exponential notation has more digits to the right of the decimal point than is specified by dp, the return value will be rounded to dp decimal places using rounding mode Big.RM.
If the value of this Big number in exponential notation has fewer digits to the right of the decimal point than is specified by dp, the return value will be appended with zeros accordingly.
If dp is omitted, or is null or undefined, the number of digits after the decimal point defaults to the minimum number of digits necessary to represent the value exactly.
Optional
dp: numberDecimal places, 0 to 1e+6 inclusive
Optional
rm: RoundingModeRounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).
Returns a string representing the value of this Big number in normal notation to a fixed number of decimal places dp.
If the value of this Big number in normal notation has more digits to the right of the decimal point than is specified by dp, the return value will be rounded to dp decimal places using rounding mode Big.RM.
If the value of this Big number in normal notation has fewer fraction digits then is specified by dp, the return value will be appended with zeros accordingly.
Unlike Number.prototype.toFixed, which returns exponential notation if a number is greater or equal to 1021, this method will always return normal notation.
If dp is omitted, or is null or undefined, then the return value is simply the value in normal notation. This is also unlike Number.prototype.toFixed, which returns the value to zero decimal places.
Optional
dp: numberDecimal places, 0 to 1e+6 inclusive
Optional
rm: RoundingModeRounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).
Returns a string representing the value of this Big number.
If this Big number has a positive exponent that is equal to or greater than 21, or a negative exponent equal to or less than -7, then exponential notation is returned.
The point at which toString returns exponential rather than normal notation can be adjusted by changing the value of Big.E_POS and Big.E_NEG. By default, Big numbers correspond to Javascript's number type in this regard.
Returns a string representing the value of this Big number to the specified number of significant digits sd.
If the value of this Big number has more digits than is specified by sd, the return value will be rounded to sd significant digits using rounding mode Big.RM.
If the value of this Big number has fewer digits than is specified by sd, the return value will be appended with zeros accordingly.
If sd is less than the number of digits necessary to represent the integer part of the value in normal notation, then exponential notation is used.
If sd is omitted, or is null or undefined, then the return value is the same as .toString().
Optional
sd: numberSignificant digits, 1 to 1e+6 inclusive
Optional
rm: RoundingModeRounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).
Returns a string representing the value of this Big number.
If this Big number has a positive exponent that is equal to or greater than 21, or a negative exponent equal to or less than -7, then exponential notation is returned.
The point at which toString returns exponential rather than normal notation can be adjusted by changing the value of Big.E_POS and Big.E_NEG. By default, Big numbers correspond to Javascript's number type in this regard.
Returns a string representing the value of this Big number.
If this Big number has a positive exponent that is equal to or greater than 21, or a negative exponent equal to or less than -7, then exponential notation is returned.
The point at which toString returns exponential rather than normal notation can be adjusted by changing the value of Big.E_POS and Big.E_NEG. By default, Big numbers correspond to Javascript's number type in this regard.
Returns an array of single digits