bignumber.js
- Version 9.3.1
- Published
- 352 kB
- No dependencies
- MIT license
Install
npm i bignumber.jsyarn add bignumber.jspnpm add bignumber.jsOverview
A library for arbitrary-precision decimal and non-decimal arithmetic
Index
Functions
Classes
BigNumber
- abs()
- absoluteValue()
- c
- clone()
- comparedTo()
- config()
- DEBUG
- decimalPlaces()
- div()
- dividedBy()
- dividedToIntegerBy()
- dp()
- e
- eq()
- EUCLID
- exponentiatedBy()
- gt()
- gte()
- idiv()
- integerValue()
- isBigNumber()
- isEqualTo()
- isFinite()
- isGreaterThan()
- isGreaterThanOrEqualTo()
- isInteger()
- isLessThan()
- isLessThanOrEqualTo()
- isNaN()
- isNegative()
- isPositive()
- isZero()
- lt()
- lte()
- max()
- maximum()
- min()
- minimum()
- minus()
- mod()
- modulo()
- multipliedBy()
- negated()
- plus()
- pow()
- precision()
- random()
- ROUND_CEIL
- ROUND_DOWN
- ROUND_FLOOR
- ROUND_HALF_CEIL
- ROUND_HALF_DOWN
- ROUND_HALF_EVEN
- ROUND_HALF_FLOOR
- ROUND_HALF_UP
- ROUND_UP
- s
- sd()
- set()
- shiftedBy()
- sqrt()
- squareRoot()
- sum()
- times()
- toExponential()
- toFixed()
- toFormat()
- toFraction()
- toJSON()
- toNumber()
- toPrecision()
- toString()
- valueOf()
Interfaces
Type Aliases
Functions
function BigNumber
BigNumber: typeof BigNumber;Classes
class BigNumber
class BigNumber implements BigNumber.Instance {}constructor
constructor(n: BigNumber.Value, base?: number);Returns a new instance of a BigNumber object with value
n, wherenis a numeric value in the specifiedbase, or base 10 ifbaseis omitted.x = new BigNumber(123.4567) // '123.4567'// 'new' is optionaly = BigNumber(x) // '123.4567'If
nis a base 10 value it can be in normal (fixed-point) or exponential notation. Values in other bases must be in normal notation. Values in any base can have fraction digits, i.e. digits after the decimal point.new BigNumber(43210) // '43210'new BigNumber('4.321e+4') // '43210'new BigNumber('-735.0918e-430') // '-7.350918e-428'new BigNumber('123412421.234324', 5) // '607236.557696'Signed
0, signedInfinityandNaNare supported.new BigNumber('-Infinity') // '-Infinity'new BigNumber(NaN) // 'NaN'new BigNumber(-0) // '0'new BigNumber('.5') // '0.5'new BigNumber('+2') // '2'String values in hexadecimal literal form, e.g.
'0xff', are valid, as are string values with the octal and binary prefixs'0o'and'0b'. String values in octal literal form without the prefix will be interpreted as decimals, e.g.'011'is interpreted as 11, not 9.new BigNumber(-10110100.1, 2) // '-180.5'new BigNumber('-0b10110100.1') // '-180.5'new BigNumber('ff.8', 16) // '255.5'new BigNumber('0xff.8') // '255.5'If a base is specified,
nis rounded according to the currentDECIMAL_PLACESandROUNDING_MODEsettings. This includes base 10, so don't include abaseparameter for decimal values unless this behaviour is desired.BigNumber.config({ DECIMAL_PLACES: 5 })new BigNumber(1.23456789) // '1.23456789'new BigNumber(1.23456789, 10) // '1.23457'An error is thrown if
baseis invalid.There is no limit to the number of digits of a value of type string (other than that of JavaScript's maximum array size). See
RANGEto set the maximum and minimum possible exponent value of a BigNumber.new BigNumber('5032485723458348569331745.33434346346912144534543')new BigNumber('4.321e10000000')BigNumber
NaNis returned ifnis invalid (unlessBigNumber.DEBUGistrue, see below).new BigNumber('.1*') // 'NaN'new BigNumber('blurgh') // 'NaN'new BigNumber(9, 2) // 'NaN'To aid in debugging, if
BigNumber.DEBUGistruethen an error will be thrown on an invalidn. An error will also be thrown ifnis of type number with more than 15 significant digits, as callingtoStringorvalueOfon these numbers may not result in the intended value.console.log(823456789123456.3) // 823456789123456.2new BigNumber(823456789123456.3) // '823456789123456.2'BigNumber.DEBUG = true// 'Error: Number has more than 15 significant digits'new BigNumber(823456789123456.3)// 'Error: Not a base 2 number'new BigNumber(9, 2)A BigNumber can also be created from an object literal. Use
isBigNumberto check that it is well-formed.new BigNumber({ s: 1, e: 2, c: [ 777, 12300000000000 ], _isBigNumber: true }) // '777.123'Parameter n
A numeric value.
Parameter base
The base of
n, integer, 2 to 36 (orALPHABET.length, seeALPHABET).
property c
readonly c: number[];The coefficient of the value of this BigNumber, an array of base 1e14 integer numbers, or null.
property DEBUG
static DEBUG?: boolean;To aid in debugging, if a
BigNumber.DEBUGproperty istruethen an error will be thrown if the BigNumber constructor receives an invalidBigNumber.Value, or ifBigNumber.isBigNumberreceives a BigNumber instance that is malformed.// No error, and BigNumber NaN is returned.new BigNumber('blurgh') // 'NaN'new BigNumber(9, 2) // 'NaN'BigNumber.DEBUG = truenew BigNumber('blurgh') // '[BigNumber Error] Not a number'new BigNumber(9, 2) // '[BigNumber Error] Not a base 2 number'An error will also be thrown if a
BigNumber.Valueis of type number with more than 15 significant digits, as callingtoStringorvalueOfon such numbers may not result in the intended value.console.log(823456789123456.3) // 823456789123456.2// No error, and the returned BigNumber does not have the same value as the number literal.new BigNumber(823456789123456.3) // '823456789123456.2'BigNumber.DEBUG = truenew BigNumber(823456789123456.3)// '[BigNumber Error] Number primitive has more than 15 significant digits'Check that a BigNumber instance is well-formed:
x = new BigNumber(10)BigNumber.DEBUG = false// Change x.c to an illegitimate value.x.c = NaN// No error, as BigNumber.DEBUG is false.BigNumber.isBigNumber(x) // trueBigNumber.DEBUG = trueBigNumber.isBigNumber(x) // '[BigNumber Error] Invalid BigNumber'
property e
readonly e: number;The exponent of the value of this BigNumber, an integer number, -1000000000 to 1000000000, or null.
property EUCLID
static readonly EUCLID: number;See
MODULO_MODE.
property ROUND_CEIL
static readonly ROUND_CEIL: number;Rounds towards Infinity.
property ROUND_DOWN
static readonly ROUND_DOWN: number;Rounds towards zero.
property ROUND_FLOOR
static readonly ROUND_FLOOR: number;Rounds towards -Infinity.
property ROUND_HALF_CEIL
static readonly ROUND_HALF_CEIL: number;Rounds towards nearest neighbour. If equidistant, rounds towards Infinity.
property ROUND_HALF_DOWN
static readonly ROUND_HALF_DOWN: number;Rounds towards nearest neighbour. If equidistant, rounds towards zero.
property ROUND_HALF_EVEN
static readonly ROUND_HALF_EVEN: number;Rounds towards nearest neighbour. If equidistant, rounds towards even neighbour.
property ROUND_HALF_FLOOR
static readonly ROUND_HALF_FLOOR: number;Rounds towards nearest neighbour. If equidistant, rounds towards -Infinity.
property ROUND_HALF_UP
static readonly ROUND_HALF_UP: number;Rounds towards nearest neighbour. If equidistant, rounds away from zero .
property ROUND_UP
static readonly ROUND_UP: number;Rounds away from zero.
property s
readonly s: number;The sign of the value of this BigNumber, -1, 1, or null.
method abs
abs: () => BigNumber;Returns a BigNumber whose value is the absolute value, i.e. the magnitude, of the value of this BigNumber.
The return value is always exact and unrounded.
x = new BigNumber(-0.8)x.abs() // '0.8'
method absoluteValue
absoluteValue: () => BigNumber;Returns a BigNumber whose value is the absolute value, i.e. the magnitude, of the value of this BigNumber.
The return value is always exact and unrounded.
x = new BigNumber(-0.8)x.absoluteValue() // '0.8'
method clone
static clone: (object?: BigNumber.Config) => BigNumber.Constructor;Returns a new independent BigNumber constructor with configuration as described by
object, or with the default configuration if object is omitted.Throws if
objectis not an object.BigNumber.config({ DECIMAL_PLACES: 5 })BN = BigNumber.clone({ DECIMAL_PLACES: 9 })x = new BigNumber(1)y = new BN(1)x.div(3) // 0.33333y.div(3) // 0.333333333// BN = BigNumber.clone({ DECIMAL_PLACES: 9 }) is equivalent to:BN = BigNumber.clone()BN.config({ DECIMAL_PLACES: 9 })Parameter object
The configuration object.
method comparedTo
comparedTo: (n: BigNumber.Value, base?: number) => 1 | -1 | 0 | null;Returns | | :-------:|:--------------------------------------------------------------| 1 | If the value of this BigNumber is greater than the value of
n-1 | If the value of this BigNumber is less than the value ofn0 | If this BigNumber andnhave the same valuenull| If the value of either this BigNumber ornisNaNx = new BigNumber(Infinity)y = new BigNumber(5)x.comparedTo(y) // 1x.comparedTo(x.minus(1)) // 0y.comparedTo(NaN) // nully.comparedTo('110', 2) // -1Parameter n
A numeric value.
Parameter base
The base of n.
method config
static config: (object?: BigNumber.Config) => BigNumber.Config;Configures the settings that apply to this BigNumber constructor.
The configuration object,
object, contains any number of the properties shown in the example below.Returns an object with the above properties and their current values.
Throws if
objectis not an object, or if an invalid value is assigned to one or more of the properties.BigNumber.config({DECIMAL_PLACES: 40,ROUNDING_MODE: BigNumber.ROUND_HALF_CEIL,EXPONENTIAL_AT: [-10, 20],RANGE: [-500, 500],CRYPTO: true,MODULO_MODE: BigNumber.ROUND_FLOOR,POW_PRECISION: 80,FORMAT: {groupSize: 3,groupSeparator: ' ',decimalSeparator: ','},ALPHABET: '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ$_'});BigNumber.config().DECIMAL_PLACES // 40Parameter object
The configuration object.
method decimalPlaces
decimalPlaces: { (): number | null; (decimalPlaces: number, roundingMode?: BigNumber.RoundingMode): BigNumber;};Returns a BigNumber whose value is the value of this BigNumber rounded by rounding mode
roundingModeto a maximum ofdecimalPlacesdecimal places.If
decimalPlacesis omitted, the return value is the number of decimal places of the value of this BigNumber, ornullif the value of this BigNumber is ±InfinityorNaN.If
roundingModeis omitted,ROUNDING_MODEis used.Throws if
decimalPlacesorroundingModeis invalid.x = new BigNumber(1234.56)x.decimalPlaces() // 2x.decimalPlaces(1) // '1234.6'x.decimalPlaces(2) // '1234.56'x.decimalPlaces(10) // '1234.56'x.decimalPlaces(0, 1) // '1234'x.decimalPlaces(0, 6) // '1235'x.decimalPlaces(1, 1) // '1234.5'x.decimalPlaces(1, BigNumber.ROUND_HALF_EVEN) // '1234.6'x // '1234.56'y = new BigNumber('9.9e-101')y.decimalPlaces() // 102Parameter decimalPlaces
Decimal places, integer, 0 to 1e+9.
Parameter roundingMode
Rounding mode, integer, 0 to 8.
method div
div: (n: BigNumber.Value, base?: number) => BigNumber;Returns a BigNumber whose value is the value of this BigNumber divided by
n, rounded according to the currentDECIMAL_PLACESandROUNDING_MODEsettings.x = new BigNumber(355)y = new BigNumber(113)x.div(y) // '3.14159292035398230088'x.div(5) // '71'x.div(47, 16) // '5'Parameter n
A numeric value.
Parameter base
The base of n.
method dividedBy
dividedBy: (n: BigNumber.Value, base?: number) => BigNumber;Returns a BigNumber whose value is the value of this BigNumber divided by
n, rounded according to the currentDECIMAL_PLACESandROUNDING_MODEsettings.x = new BigNumber(355)y = new BigNumber(113)x.dividedBy(y) // '3.14159292035398230088'x.dividedBy(5) // '71'x.dividedBy(47, 16) // '5'Parameter n
A numeric value.
Parameter base
The base of n.
method dividedToIntegerBy
dividedToIntegerBy: (n: BigNumber.Value, base?: number) => BigNumber;Returns a BigNumber whose value is the integer part of dividing the value of this BigNumber by
n.x = new BigNumber(5)y = new BigNumber(3)x.dividedToIntegerBy(y) // '1'x.dividedToIntegerBy(0.7) // '7'x.dividedToIntegerBy('0.f', 16) // '5'Parameter n
A numeric value.
Parameter base
The base of n.
method dp
dp: { (): number | null; (decimalPlaces: number, roundingMode?: BigNumber.RoundingMode): BigNumber;};Returns a BigNumber whose value is the value of this BigNumber rounded by rounding mode
roundingModeto a maximum ofdecimalPlacesdecimal places.If
decimalPlacesis omitted, the return value is the number of decimal places of the value of this BigNumber, ornullif the value of this BigNumber is ±InfinityorNaN.If
roundingModeis omitted,ROUNDING_MODEis used.Throws if
decimalPlacesorroundingModeis invalid.x = new BigNumber(1234.56)x.dp() // 2x.dp(1) // '1234.6'x.dp(2) // '1234.56'x.dp(10) // '1234.56'x.dp(0, 1) // '1234'x.dp(0, 6) // '1235'x.dp(1, 1) // '1234.5'x.dp(1, BigNumber.ROUND_HALF_EVEN) // '1234.6'x // '1234.56'y = new BigNumber('9.9e-101')y.dp() // 102Parameter decimalPlaces
Decimal places, integer, 0 to 1e+9.
Parameter roundingMode
Rounding mode, integer, 0 to 8.
method eq
eq: (n: BigNumber.Value, base?: number) => boolean;Returns
trueif the value of this BigNumber is equal to the value ofn, otherwise returnsfalse.As with JavaScript,
NaNdoes not equalNaN.0 === 1e-324 // truex = new BigNumber(0)x.eq('1e-324') // falseBigNumber(-0).eq(x) // true ( -0 === 0 )BigNumber(255).eq('ff', 16) // truey = new BigNumber(NaN)y.eq(NaN) // falseParameter n
A numeric value.
Parameter base
The base of n.
method exponentiatedBy
exponentiatedBy: { (n: BigNumber.Value, m?: BigNumber.Value): BigNumber; (n: number, m?: BigNumber.Value): BigNumber;};Returns a BigNumber whose value is the value of this BigNumber exponentiated by
n, i.e. raised to the powern, and optionally modulo a modulusm.If
nis negative the result is rounded according to the currentDECIMAL_PLACESandROUNDING_MODEsettings.As the number of digits of the result of the power operation can grow so large so quickly, e.g. 123.456**10000 has over 50000 digits, the number of significant digits calculated is limited to the value of the
POW_PRECISIONsetting (unless a modulusmis specified).By default
POW_PRECISIONis set to 0. This means that an unlimited number of significant digits will be calculated, and that the method's performance will decrease dramatically for larger exponents.If
mis specified and the value ofm,nand this BigNumber are integers andnis positive, then a fast modular exponentiation algorithm is used, otherwise the operation will be performed asx.exponentiatedBy(n).modulo(m)with aPOW_PRECISIONof 0.Throws if
nis not an integer.Math.pow(0.7, 2) // 0.48999999999999994x = new BigNumber(0.7)x.exponentiatedBy(2) // '0.49'BigNumber(3).exponentiatedBy(-2) // '0.11111111111111111111'Parameter n
The exponent, an integer.
Parameter m
The modulus.
method gt
gt: (n: BigNumber.Value, base?: number) => boolean;Returns
trueif the value of this BigNumber is greater than the value ofn, otherwise returnsfalse.0.1 > (0.3 - 0.2) // truex = new BigNumber(0.1)x.gt(BigNumber(0.3).minus(0.2)) // falseBigNumber(0).gt(x) // falseBigNumber(11, 3).gt(11.1, 2) // trueParameter n
A numeric value.
Parameter base
The base of n.
method gte
gte: (n: BigNumber.Value, base?: number) => boolean;Returns
trueif the value of this BigNumber is greater than or equal to the value ofn, otherwise returnsfalse.(0.3 - 0.2) >= 0.1 // falsex = new BigNumber(0.3).minus(0.2)x.gte(0.1) // trueBigNumber(1).gte(x) // trueBigNumber(10, 18).gte('i', 36) // trueParameter n
A numeric value.
Parameter base
The base of n.
method idiv
idiv: (n: BigNumber.Value, base?: number) => BigNumber;Returns a BigNumber whose value is the integer part of dividing the value of this BigNumber by
n.x = new BigNumber(5)y = new BigNumber(3)x.idiv(y) // '1'x.idiv(0.7) // '7'x.idiv('0.f', 16) // '5'Parameter n
A numeric value.
Parameter base
The base of n.
method integerValue
integerValue: (rm?: BigNumber.RoundingMode) => BigNumber;Returns a BigNumber whose value is the value of this BigNumber rounded to an integer using rounding mode
rm.If
rmis omitted,ROUNDING_MODEis used.Throws if
rmis invalid.x = new BigNumber(123.456)x.integerValue() // '123'x.integerValue(BigNumber.ROUND_CEIL) // '124'y = new BigNumber(-12.7)y.integerValue() // '-13'x.integerValue(BigNumber.ROUND_DOWN) // '-12'Parameter rm
The roundng mode, an integer, 0 to 8.
method isBigNumber
static isBigNumber: (value: any) => value is BigNumber;Returns
trueifvalueis a BigNumber instance, otherwise returnsfalse.If
BigNumber.DEBUGistrue, throws if a BigNumber instance is not well-formed.x = 42y = new BigNumber(x)BigNumber.isBigNumber(x) // falsey instanceof BigNumber // trueBigNumber.isBigNumber(y) // trueBN = BigNumber.clone();z = new BN(x)z instanceof BigNumber // falseBigNumber.isBigNumber(z) // trueParameter value
The value to test.
method isEqualTo
isEqualTo: (n: BigNumber.Value, base?: number) => boolean;Returns
trueif the value of this BigNumber is equal to the value ofn, otherwise returnsfalse.As with JavaScript,
NaNdoes not equalNaN.0 === 1e-324 // truex = new BigNumber(0)x.isEqualTo('1e-324') // falseBigNumber(-0).isEqualTo(x) // true ( -0 === 0 )BigNumber(255).isEqualTo('ff', 16) // truey = new BigNumber(NaN)y.isEqualTo(NaN) // falseParameter n
A numeric value.
Parameter base
The base of n.
method isFinite
isFinite: () => boolean;Returns
trueif the value of this BigNumber is a finite number, otherwise returnsfalse.The only possible non-finite values of a BigNumber are
NaN,Infinityand-Infinity.x = new BigNumber(1)x.isFinite() // truey = new BigNumber(Infinity)y.isFinite() // false
method isGreaterThan
isGreaterThan: (n: BigNumber.Value, base?: number) => boolean;Returns
trueif the value of this BigNumber is greater than the value ofn, otherwise returnsfalse.0.1 > (0.3 - 0.2) // truex = new BigNumber(0.1)x.isGreaterThan(BigNumber(0.3).minus(0.2)) // falseBigNumber(0).isGreaterThan(x) // falseBigNumber(11, 3).isGreaterThan(11.1, 2) // trueParameter n
A numeric value.
Parameter base
The base of n.
method isGreaterThanOrEqualTo
isGreaterThanOrEqualTo: (n: BigNumber.Value, base?: number) => boolean;Returns
trueif the value of this BigNumber is greater than or equal to the value ofn, otherwise returnsfalse.(0.3 - 0.2) >= 0.1 // falsex = new BigNumber(0.3).minus(0.2)x.isGreaterThanOrEqualTo(0.1) // trueBigNumber(1).isGreaterThanOrEqualTo(x) // trueBigNumber(10, 18).isGreaterThanOrEqualTo('i', 36) // trueParameter n
A numeric value.
Parameter base
The base of n.
method isInteger
isInteger: () => boolean;Returns
trueif the value of this BigNumber is an integer, otherwise returnsfalse.x = new BigNumber(1)x.isInteger() // truey = new BigNumber(123.456)y.isInteger() // false
method isLessThan
isLessThan: (n: BigNumber.Value, base?: number) => boolean;Returns
trueif the value of this BigNumber is less than the value ofn, otherwise returnsfalse.(0.3 - 0.2) < 0.1 // truex = new BigNumber(0.3).minus(0.2)x.isLessThan(0.1) // falseBigNumber(0).isLessThan(x) // trueBigNumber(11.1, 2).isLessThan(11, 3) // trueParameter n
A numeric value.
Parameter base
The base of n.
method isLessThanOrEqualTo
isLessThanOrEqualTo: (n: BigNumber.Value, base?: number) => boolean;Returns
trueif the value of this BigNumber is less than or equal to the value ofn, otherwise returnsfalse.0.1 <= (0.3 - 0.2) // falsex = new BigNumber(0.1)x.isLessThanOrEqualTo(BigNumber(0.3).minus(0.2)) // trueBigNumber(-1).isLessThanOrEqualTo(x) // trueBigNumber(10, 18).isLessThanOrEqualTo('i', 36) // trueParameter n
A numeric value.
Parameter base
The base of n.
method isNaN
isNaN: () => boolean;Returns
trueif the value of this BigNumber isNaN, otherwise returnsfalse.x = new BigNumber(NaN)x.isNaN() // truey = new BigNumber('Infinity')y.isNaN() // false
method isNegative
isNegative: () => boolean;Returns
trueif the value of this BigNumber is negative, otherwise returnsfalse.x = new BigNumber(-0)x.isNegative() // truey = new BigNumber(2)y.isNegative() // false
method isPositive
isPositive: () => boolean;Returns
trueif the value of this BigNumber is positive, otherwise returnsfalse.x = new BigNumber(-0)x.isPositive() // falsey = new BigNumber(2)y.isPositive() // true
method isZero
isZero: () => boolean;Returns
trueif the value of this BigNumber is zero or minus zero, otherwise returnsfalse.x = new BigNumber(-0)x.isZero() // true
method lt
lt: (n: BigNumber.Value, base?: number) => boolean;Returns
trueif the value of this BigNumber is less than the value ofn, otherwise returnsfalse.(0.3 - 0.2) < 0.1 // truex = new BigNumber(0.3).minus(0.2)x.lt(0.1) // falseBigNumber(0).lt(x) // trueBigNumber(11.1, 2).lt(11, 3) // trueParameter n
A numeric value.
Parameter base
The base of n.
method lte
lte: (n: BigNumber.Value, base?: number) => boolean;Returns
trueif the value of this BigNumber is less than or equal to the value ofn, otherwise returnsfalse.0.1 <= (0.3 - 0.2) // falsex = new BigNumber(0.1)x.lte(BigNumber(0.3).minus(0.2)) // trueBigNumber(-1).lte(x) // trueBigNumber(10, 18).lte('i', 36) // trueParameter n
A numeric value.
Parameter base
The base of n.
method max
static max: (...n: BigNumber.Value[]) => BigNumber;Returns a BigNumber whose value is the maximum of the arguments.
The return value is always exact and unrounded.
x = new BigNumber('3257869345.0378653')BigNumber.max(4e9, x, '123456789.9') // '4000000000'arr = [12, '13', new BigNumber(14)]BigNumber.max.apply(null, arr) // '14'Parameter n
A numeric value.
method maximum
static maximum: (...n: BigNumber.Value[]) => BigNumber;Returns a BigNumber whose value is the maximum of the arguments.
The return value is always exact and unrounded.
x = new BigNumber('3257869345.0378653')BigNumber.maximum(4e9, x, '123456789.9') // '4000000000'arr = [12, '13', new BigNumber(14)]BigNumber.maximum.apply(null, arr) // '14'Parameter n
A numeric value.
method min
static min: (...n: BigNumber.Value[]) => BigNumber;Returns a BigNumber whose value is the minimum of the arguments.
The return value is always exact and unrounded.
x = new BigNumber('3257869345.0378653')BigNumber.min(4e9, x, '123456789.9') // '123456789.9'arr = [2, new BigNumber(-14), '-15.9999', -12]BigNumber.min.apply(null, arr) // '-15.9999'Parameter n
A numeric value.
method minimum
static minimum: (...n: BigNumber.Value[]) => BigNumber;Returns a BigNumber whose value is the minimum of the arguments.
The return value is always exact and unrounded.
x = new BigNumber('3257869345.0378653')BigNumber.minimum(4e9, x, '123456789.9') // '123456789.9'arr = [2, new BigNumber(-14), '-15.9999', -12]BigNumber.minimum.apply(null, arr) // '-15.9999'Parameter n
A numeric value.
method minus
minus: (n: BigNumber.Value, base?: number) => BigNumber;Returns a BigNumber whose value is the value of this BigNumber minus
n.The return value is always exact and unrounded.
0.3 - 0.1 // 0.19999999999999998x = new BigNumber(0.3)x.minus(0.1) // '0.2'x.minus(0.6, 20) // '0'Parameter n
A numeric value.
Parameter base
The base of n.
method mod
mod: (n: BigNumber.Value, base?: number) => BigNumber;Returns a BigNumber whose value is the value of this BigNumber modulo
n, i.e. the integer remainder of dividing this BigNumber byn.The value returned, and in particular its sign, is dependent on the value of the
MODULO_MODEsetting of this BigNumber constructor. If it is 1 (default value), the result will have the same sign as this BigNumber, and it will match that of Javascript's%operator (within the limits of double precision) and BigDecimal'sremaindermethod.The return value is always exact and unrounded.
See
MODULO_MODEfor a description of the other modulo modes.1 % 0.9 // 0.09999999999999998x = new BigNumber(1)x.mod(0.9) // '0.1'y = new BigNumber(33)y.mod('a', 33) // '3'Parameter n
A numeric value.
Parameter base
The base of n.
method modulo
modulo: (n: BigNumber.Value, base?: number) => BigNumber;Returns a BigNumber whose value is the value of this BigNumber modulo
n, i.e. the integer remainder of dividing this BigNumber byn.The value returned, and in particular its sign, is dependent on the value of the
MODULO_MODEsetting of this BigNumber constructor. If it is 1 (default value), the result will have the same sign as this BigNumber, and it will match that of Javascript's%operator (within the limits of double precision) and BigDecimal'sremaindermethod.The return value is always exact and unrounded.
See
MODULO_MODEfor a description of the other modulo modes.1 % 0.9 // 0.09999999999999998x = new BigNumber(1)x.modulo(0.9) // '0.1'y = new BigNumber(33)y.modulo('a', 33) // '3'Parameter n
A numeric value.
Parameter base
The base of n.
method multipliedBy
multipliedBy: (n: BigNumber.Value, base?: number) => BigNumber;Returns a BigNumber whose value is the value of this BigNumber multiplied by
n.The return value is always exact and unrounded.
0.6 * 3 // 1.7999999999999998x = new BigNumber(0.6)y = x.multipliedBy(3) // '1.8'BigNumber('7e+500').multipliedBy(y) // '1.26e+501'x.multipliedBy('-a', 16) // '-6'Parameter n
A numeric value.
Parameter base
The base of n.
method negated
negated: () => BigNumber;Returns a BigNumber whose value is the value of this BigNumber negated, i.e. multiplied by -1.
x = new BigNumber(1.8)x.negated() // '-1.8'y = new BigNumber(-1.3)y.negated() // '1.3'
method plus
plus: (n: BigNumber.Value, base?: number) => BigNumber;Returns a BigNumber whose value is the value of this BigNumber plus
n.The return value is always exact and unrounded.
0.1 + 0.2 // 0.30000000000000004x = new BigNumber(0.1)y = x.plus(0.2) // '0.3'BigNumber(0.7).plus(x).plus(y) // '1.1'x.plus('0.1', 8) // '0.225'Parameter n
A numeric value.
Parameter base
The base of n.
method pow
pow: { (n: BigNumber.Value, m?: BigNumber.Value): BigNumber; (n: number, m?: BigNumber.Value): BigNumber;};Returns a BigNumber whose value is the value of this BigNumber exponentiated by
n, i.e. raised to the powern, and optionally modulo a modulusm.If
nis negative the result is rounded according to the currentDECIMAL_PLACESandROUNDING_MODEsettings.As the number of digits of the result of the power operation can grow so large so quickly, e.g. 123.456**10000 has over 50000 digits, the number of significant digits calculated is limited to the value of the
POW_PRECISIONsetting (unless a modulusmis specified).By default
POW_PRECISIONis set to 0. This means that an unlimited number of significant digits will be calculated, and that the method's performance will decrease dramatically for larger exponents.If
mis specified and the value ofm,nand this BigNumber are integers andnis positive, then a fast modular exponentiation algorithm is used, otherwise the operation will be performed asx.pow(n).modulo(m)with aPOW_PRECISIONof 0.Throws if
nis not an integer.Math.pow(0.7, 2) // 0.48999999999999994x = new BigNumber(0.7)x.pow(2) // '0.49'BigNumber(3).pow(-2) // '0.11111111111111111111'Parameter n
The exponent, an integer.
Parameter m
The modulus.
method precision
precision: { (includeZeros?: boolean): number; ( significantDigits: number, roundingMode?: BigNumber.RoundingMode ): BigNumber;};Returns the number of significant digits of the value of this BigNumber, or
nullif the value of this BigNumber is ±InfinityorNaN.If
includeZerosis true then any trailing zeros of the integer part of the value of this BigNumber are counted as significant digits, otherwise they are not.Throws if
includeZerosis invalid.x = new BigNumber(9876.54321)x.precision() // 9y = new BigNumber(987000)y.precision(false) // 3y.precision(true) // 6Parameter includeZeros
Whether to include integer trailing zeros in the significant digit count.
Returns a BigNumber whose value is the value of this BigNumber rounded to a precision of
significantDigitssignificant digits using rounding moderoundingMode.If
roundingModeis omitted,ROUNDING_MODEwill be used.Throws if
significantDigitsorroundingModeis invalid.x = new BigNumber(9876.54321)x.precision(6) // '9876.54'x.precision(6, BigNumber.ROUND_UP) // '9876.55'x.precision(2) // '9900'x.precision(2, 1) // '9800'x // '9876.54321'Parameter significantDigits
Significant digits, integer, 1 to 1e+9.
Parameter roundingMode
Rounding mode, integer, 0 to 8.
method random
static random: (decimalPlaces?: number) => BigNumber;Returns a new BigNumber with a pseudo-random value equal to or greater than 0 and less than 1.
The return value will have
decimalPlacesdecimal places, or less if trailing zeros are produced. IfdecimalPlacesis omitted, the currentDECIMAL_PLACESsetting will be used.Depending on the value of this BigNumber constructor's
CRYPTOsetting and the support for thecryptoobject in the host environment, the random digits of the return value are generated by eitherMath.random(fastest),crypto.getRandomValues(Web Cryptography API in recent browsers) orcrypto.randomBytes(Node.js).To be able to set
CRYPTOto true when using Node.js, thecryptoobject must be available globally:global.crypto = require('crypto')If
CRYPTOis true, i.e. one of thecryptomethods is to be used, the value of a returned BigNumber should be cryptographically secure and statistically indistinguishable from a random value.Throws if
decimalPlacesis invalid.BigNumber.config({ DECIMAL_PLACES: 10 })BigNumber.random() // '0.4117936847'BigNumber.random(20) // '0.78193327636914089009'Parameter decimalPlaces
Decimal places, integer, 0 to 1e+9.
method sd
sd: { (includeZeros?: boolean): number; ( significantDigits: number, roundingMode?: BigNumber.RoundingMode ): BigNumber;};Returns the number of significant digits of the value of this BigNumber, or
nullif the value of this BigNumber is ±InfinityorNaN.If
includeZerosis true then any trailing zeros of the integer part of the value of this BigNumber are counted as significant digits, otherwise they are not.Throws if
includeZerosis invalid.x = new BigNumber(9876.54321)x.sd() // 9y = new BigNumber(987000)y.sd(false) // 3y.sd(true) // 6Parameter includeZeros
Whether to include integer trailing zeros in the significant digit count.
Returns a BigNumber whose value is the value of this BigNumber rounded to a precision of
significantDigitssignificant digits using rounding moderoundingMode.If
roundingModeis omitted,ROUNDING_MODEwill be used.Throws if
significantDigitsorroundingModeis invalid.x = new BigNumber(9876.54321)x.sd(6) // '9876.54'x.sd(6, BigNumber.ROUND_UP) // '9876.55'x.sd(2) // '9900'x.sd(2, 1) // '9800'x // '9876.54321'Parameter significantDigits
Significant digits, integer, 1 to 1e+9.
Parameter roundingMode
Rounding mode, integer, 0 to 8.
method set
static set: (object?: BigNumber.Config) => BigNumber.Config;Configures the settings that apply to this BigNumber constructor.
The configuration object,
object, contains any number of the properties shown in the example below.Returns an object with the above properties and their current values.
Throws if
objectis not an object, or if an invalid value is assigned to one or more of the properties.BigNumber.set({DECIMAL_PLACES: 40,ROUNDING_MODE: BigNumber.ROUND_HALF_CEIL,EXPONENTIAL_AT: [-10, 20],RANGE: [-500, 500],CRYPTO: true,MODULO_MODE: BigNumber.ROUND_FLOOR,POW_PRECISION: 80,FORMAT: {groupSize: 3,groupSeparator: ' ',decimalSeparator: ','},ALPHABET: '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ$_'});BigNumber.set().DECIMAL_PLACES // 40Parameter object
The configuration object.
method shiftedBy
shiftedBy: (n: number) => BigNumber;Returns a BigNumber whose value is the value of this BigNumber shifted by
nplaces.The shift is of the decimal point, i.e. of powers of ten, and is to the left if
nis negative or to the right ifnis positive.The return value is always exact and unrounded.
Throws if
nis invalid.x = new BigNumber(1.23)x.shiftedBy(3) // '1230'x.shiftedBy(-3) // '0.00123'Parameter n
The shift value, integer, -9007199254740991 to 9007199254740991.
method sqrt
sqrt: () => BigNumber;Returns a BigNumber whose value is the square root of the value of this BigNumber, rounded according to the current
DECIMAL_PLACESandROUNDING_MODEsettings.The return value will be correctly rounded, i.e. rounded as if the result was first calculated to an infinite number of correct digits before rounding.
x = new BigNumber(16)x.sqrt() // '4'y = new BigNumber(3)y.sqrt() // '1.73205080756887729353'
method squareRoot
squareRoot: () => BigNumber;Returns a BigNumber whose value is the square root of the value of this BigNumber, rounded according to the current
DECIMAL_PLACESandROUNDING_MODEsettings.The return value will be correctly rounded, i.e. rounded as if the result was first calculated to an infinite number of correct digits before rounding.
x = new BigNumber(16)x.squareRoot() // '4'y = new BigNumber(3)y.squareRoot() // '1.73205080756887729353'
method sum
static sum: (...n: BigNumber.Value[]) => BigNumber;Returns a BigNumber whose value is the sum of the arguments.
The return value is always exact and unrounded.
x = new BigNumber('3257869345.0378653')BigNumber.sum(4e9, x, '123456789.9') // '7381326134.9378653'arr = [2, new BigNumber(14), '15.9999', 12]BigNumber.sum.apply(null, arr) // '43.9999'Parameter n
A numeric value.
method times
times: (n: BigNumber.Value, base?: number) => BigNumber;Returns a BigNumber whose value is the value of this BigNumber multiplied by
n.The return value is always exact and unrounded.
0.6 * 3 // 1.7999999999999998x = new BigNumber(0.6)y = x.times(3) // '1.8'BigNumber('7e+500').times(y) // '1.26e+501'x.times('-a', 16) // '-6'Parameter n
A numeric value.
Parameter base
The base of n.
method toExponential
toExponential: { (decimalPlaces: number, roundingMode?: BigNumber.RoundingMode): string; (): string;};Returns a string representing the value of this BigNumber in exponential notation rounded using rounding mode
roundingModetodecimalPlacesdecimal places, i.e with one digit before the decimal point anddecimalPlacesdigits after it.If the value of this BigNumber in exponential notation has fewer than
decimalPlacesfraction digits, the return value will be appended with zeros accordingly.If
decimalPlacesis omitted, the number of digits after the decimal point defaults to the minimum number of digits necessary to represent the value exactly.If
roundingModeis omitted,ROUNDING_MODEis used.Throws if
decimalPlacesorroundingModeis invalid.x = 45.6y = new BigNumber(x)x.toExponential() // '4.56e+1'y.toExponential() // '4.56e+1'x.toExponential(0) // '5e+1'y.toExponential(0) // '5e+1'x.toExponential(1) // '4.6e+1'y.toExponential(1) // '4.6e+1'y.toExponential(1, 1) // '4.5e+1' (ROUND_DOWN)x.toExponential(3) // '4.560e+1'y.toExponential(3) // '4.560e+1'Parameter decimalPlaces
Decimal places, integer, 0 to 1e+9.
Parameter roundingMode
Rounding mode, integer, 0 to 8.
method toFixed
toFixed: { (decimalPlaces: number, roundingMode?: BigNumber.RoundingMode): string; (): string;};Returns a string representing the value of this BigNumber in normal (fixed-point) notation rounded to
decimalPlacesdecimal places using rounding moderoundingMode.If the value of this BigNumber in normal notation has fewer than
decimalPlacesfraction digits, 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 10**21, this method will always return normal notation.If
decimalPlacesis omitted, the return value will be unrounded and in normal notation. This is also unlikeNumber.prototype.toFixed, which returns the value to zero decimal places. It is useful when normal notation is required and the currentEXPONENTIAL_ATsetting causestoStringto return exponential notation.If
roundingModeis omitted,ROUNDING_MODEis used.Throws if
decimalPlacesorroundingModeis invalid.x = 3.456y = new BigNumber(x)x.toFixed() // '3'y.toFixed() // '3.456'y.toFixed(0) // '3'x.toFixed(2) // '3.46'y.toFixed(2) // '3.46'y.toFixed(2, 1) // '3.45' (ROUND_DOWN)x.toFixed(5) // '3.45600'y.toFixed(5) // '3.45600'Parameter decimalPlaces
Decimal places, integer, 0 to 1e+9.
Parameter roundingMode
Rounding mode, integer, 0 to 8.
method toFormat
toFormat: { ( decimalPlaces: number, roundingMode: BigNumber.RoundingMode, format?: BigNumber.Format ): string; (decimalPlaces: number, roundingMode?: BigNumber.RoundingMode): string; (decimalPlaces?: number): string; (decimalPlaces: number, format: BigNumber.Format): string; (format: BigNumber.Format): string;};Returns a string representing the value of this BigNumber in normal (fixed-point) notation rounded to
decimalPlacesdecimal places using rounding moderoundingMode, and formatted according to the properties of theformatorFORMATobject.The formatting object may contain some or all of the properties shown in the examples below.
If
decimalPlacesis omitted, then the return value is not rounded to a fixed number of decimal places.If
roundingModeis omitted,ROUNDING_MODEis used.If
formatis omitted,FORMATis used.Throws if
decimalPlaces,roundingMode, orformatis invalid.fmt = {decimalSeparator: '.',groupSeparator: ',',groupSize: 3,secondaryGroupSize: 0,fractionGroupSeparator: ' ',fractionGroupSize: 0}x = new BigNumber('123456789.123456789')// Set the global formatting optionsBigNumber.config({ FORMAT: fmt })x.toFormat() // '123,456,789.123456789'x.toFormat(3) // '123,456,789.123'// If a reference to the object assigned to FORMAT has been retained,// the format properties can be changed directlyfmt.groupSeparator = ' 'fmt.fractionGroupSize = 5x.toFormat() // '123 456 789.12345 6789'// Alternatively, pass the formatting options as an argumentfmt = {decimalSeparator: ',',groupSeparator: '.',groupSize: 3,secondaryGroupSize: 2}x.toFormat() // '123 456 789.12345 6789'x.toFormat(fmt) // '12.34.56.789,123456789'x.toFormat(2, fmt) // '12.34.56.789,12'x.toFormat(3, BigNumber.ROUND_UP, fmt) // '12.34.56.789,124'Parameter decimalPlaces
Decimal places, integer, 0 to 1e+9.
Parameter roundingMode
Rounding mode, integer, 0 to 8.
Parameter format
Formatting options object. See
BigNumber.Format.
method toFraction
toFraction: (max_denominator?: BigNumber.Value) => [BigNumber, BigNumber];Returns an array of two BigNumbers representing the value of this BigNumber as a simple fraction with an integer numerator and an integer denominator. The denominator will be a positive non-zero value less than or equal to
max_denominator. If a maximum denominator,max_denominator, is not specified, the denominator will be the lowest value necessary to represent the number exactly.Throws if
max_denominatoris invalid.x = new BigNumber(1.75)x.toFraction() // '7, 4'pi = new BigNumber('3.14159265358')pi.toFraction() // '157079632679,50000000000'pi.toFraction(100000) // '312689, 99532'pi.toFraction(10000) // '355, 113'pi.toFraction(100) // '311, 99'pi.toFraction(10) // '22, 7'pi.toFraction(1) // '3, 1'Parameter max_denominator
The maximum denominator, integer > 0, or Infinity.
method toJSON
toJSON: () => string;As
valueOf.
method toNumber
toNumber: () => number;Returns the value of this BigNumber as a JavaScript primitive number.
Using the unary plus operator gives the same result.
x = new BigNumber(456.789)x.toNumber() // 456.789+x // 456.789y = new BigNumber('45987349857634085409857349856430985')y.toNumber() // 4.598734985763409e+34z = new BigNumber(-0)1 / z.toNumber() // -Infinity1 / +z // -Infinity
method toPrecision
toPrecision: { (significantDigits: number, roundingMode?: BigNumber.RoundingMode): string; (): string;};Returns a string representing the value of this BigNumber rounded to
significantDigitssignificant digits using rounding moderoundingMode.If
significantDigitsis less than the number of digits necessary to represent the integer part of the value in normal (fixed-point) notation, then exponential notation is used.If
significantDigitsis omitted, then the return value is the same asn.toString().If
roundingModeis omitted,ROUNDING_MODEis used.Throws if
significantDigitsorroundingModeis invalid.x = 45.6y = new BigNumber(x)x.toPrecision() // '45.6'y.toPrecision() // '45.6'x.toPrecision(1) // '5e+1'y.toPrecision(1) // '5e+1'y.toPrecision(2, 0) // '4.6e+1' (ROUND_UP)y.toPrecision(2, 1) // '4.5e+1' (ROUND_DOWN)x.toPrecision(5) // '45.600'y.toPrecision(5) // '45.600'Parameter significantDigits
Significant digits, integer, 1 to 1e+9.
Parameter roundingMode
Rounding mode, integer 0 to 8.
method toString
toString: (base?: number) => string;Returns a string representing the value of this BigNumber in base
base, or base 10 ifbaseis omitted.For bases above 10, and using the default base conversion alphabet (see
ALPHABET), values from 10 to 35 are represented by a-z (the same asNumber.prototype.toString).If a base is specified the value is rounded according to the current
DECIMAL_PLACESandROUNDING_MODEsettings, otherwise it is not.If a base is not specified, and this BigNumber has a positive exponent that is equal to or greater than the positive component of the current
EXPONENTIAL_ATsetting, or a negative exponent equal to or less than the negative component of the setting, then exponential notation is returned.Throws if
baseis invalid.x = new BigNumber(750000)x.toString() // '750000'BigNumber.config({ EXPONENTIAL_AT: 5 })x.toString() // '7.5e+5'y = new BigNumber(362.875)y.toString(2) // '101101010.111'y.toString(9) // '442.77777777777777777778'y.toString(32) // 'ba.s'BigNumber.config({ DECIMAL_PLACES: 4 });z = new BigNumber('1.23456789')z.toString() // '1.23456789'z.toString(10) // '1.2346'Parameter base
The base, integer, 2 to 36 (or
ALPHABET.length, seeALPHABET).
method valueOf
valueOf: () => string;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' ```
Interfaces
interface Config
interface Config {}See
BigNumber.config(aliasBigNumber.set) andBigNumber.clone.
property ALPHABET
ALPHABET?: string;The alphabet used for base conversion. The length of the alphabet corresponds to the maximum value of the base argument that can be passed to the BigNumber constructor or
toString.Default value:
'0123456789abcdefghijklmnopqrstuvwxyz'.There is no maximum length for the alphabet, but it must be at least 2 characters long, and it must not contain whitespace or a repeated character, or the sign indicators '+' and '-', or the decimal separator '.'.
// duodecimal (base 12)BigNumber.config({ ALPHABET: '0123456789TE' })x = new BigNumber('T', 12)x.toString() // '10'x.toString(12) // 'T'
property CRYPTO
CRYPTO?: boolean;A boolean:
trueorfalse. Default value:false.The value that determines whether cryptographically-secure pseudo-random number generation is used. If
CRYPTOis set to true then the random method will generate random digits usingcrypto.getRandomValuesin browsers that support it, orcrypto.randomBytesif using a version of Node.js that supports it.If neither function is supported by the host environment then attempting to set
CRYPTOtotruewill fail and an exception will be thrown.If
CRYPTOisfalsethen the source of randomness used will beMath.random(which is assumed to generate at least 30 bits of randomness).See
BigNumber.random.// Node.jsglobal.crypto = require('crypto')BigNumber.config({ CRYPTO: true })BigNumber.config().CRYPTO // trueBigNumber.random() // 0.54340758610486147524
property DECIMAL_PLACES
DECIMAL_PLACES?: number;An integer, 0 to 1e+9. Default value: 20.
The maximum number of decimal places of the result of operations involving division, i.e. division, square root and base conversion operations, and exponentiation when the exponent is negative.
BigNumber.config({ DECIMAL_PLACES: 5 })BigNumber.set({ DECIMAL_PLACES: 5 })
property EXPONENTIAL_AT
EXPONENTIAL_AT?: number | [number, number];An integer, 0 to 1e+9, or an array, [-1e+9 to 0, 0 to 1e+9]. Default value:
[-7, 20].The exponent value(s) at which
toStringreturns exponential notation.If a single number is assigned, the value is the exponent magnitude.
If an array of two numbers is assigned then the first number is the negative exponent value at and beneath which exponential notation is used, and the second number is the positive exponent value at and above which exponential notation is used.
For example, to emulate JavaScript numbers in terms of the exponent values at which they begin to use exponential notation, use
[-7, 20].BigNumber.config({ EXPONENTIAL_AT: 2 })new BigNumber(12.3) // '12.3' e is only 1new BigNumber(123) // '1.23e+2'new BigNumber(0.123) // '0.123' e is only -1new BigNumber(0.0123) // '1.23e-2'BigNumber.config({ EXPONENTIAL_AT: [-7, 20] })new BigNumber(123456789) // '123456789' e is only 8new BigNumber(0.000000123) // '1.23e-7'// Almost never return exponential notation:BigNumber.config({ EXPONENTIAL_AT: 1e+9 })// Always return exponential notation:BigNumber.config({ EXPONENTIAL_AT: 0 })Regardless of the value of
EXPONENTIAL_AT, thetoFixedmethod will always return a value in normal notation and thetoExponentialmethod will always return a value in exponential form. CallingtoStringwith a base argument, e.g.toString(10), will also always return normal notation.
property FORMAT
FORMAT?: BigNumber.Format;An object including any number of the properties shown below.
The object configures the format of the string returned by the
toFormatmethod. The example below shows the properties of the object that are recognised, and their default values.Unlike the other configuration properties, the values of the properties of the
FORMATobject will not be checked for validity - the existing object will simply be replaced by the object that is passed in.See
toFormat.BigNumber.config({FORMAT: {// string to prependprefix: '',// the decimal separatordecimalSeparator: '.',// the grouping separator of the integer partgroupSeparator: ',',// the primary grouping size of the integer partgroupSize: 3,// the secondary grouping size of the integer partsecondaryGroupSize: 0,// the grouping separator of the fraction partfractionGroupSeparator: ' ',// the grouping size of the fraction partfractionGroupSize: 0,// string to appendsuffix: ''}})
property MODULO_MODE
MODULO_MODE?: BigNumber.ModuloMode;An integer, 0, 1, 3, 6 or 9. Default value:
BigNumber.ROUND_DOWN(1).The modulo mode used when calculating the modulus:
a mod n. The quotient,q = a / n, is calculated according to theROUNDING_MODEthat corresponds to the chosenMODULO_MODE. The remainder,r, is calculated as:r = a - n * q.The modes that are most commonly used for the modulus/remainder operation are shown in the following table. Although the other rounding modes can be used, they may not give useful results.
Property | Value | Description :------------------|:------|:------------------------------------------------------------------
ROUND_UP| 0 | The remainder is positive if the dividend is negative.ROUND_DOWN| 1 | The remainder has the same sign as the dividend. | | Uses 'truncating division' and matches JavaScript's%operator .ROUND_FLOOR| 3 | The remainder has the same sign as the divisor. | | This matches Python's%operator.ROUND_HALF_EVEN| 6 | The IEEE 754 remainder function.EUCLID| 9 | The remainder is always positive. | | Euclidian division:q = sign(n) * floor(a / abs(n))The rounding/modulo modes are available as enumerated properties of the BigNumber constructor.
See
modulo.BigNumber.config({ MODULO_MODE: BigNumber.EUCLID })BigNumber.set({ MODULO_MODE: 9 }) // equivalent
property POW_PRECISION
POW_PRECISION?: number;An integer, 0 to 1e+9. Default value: 0.
The maximum precision, i.e. number of significant digits, of the result of the power operation - unless a modulus is specified.
If set to 0, the number of significant digits will not be limited.
See
exponentiatedBy.BigNumber.config({ POW_PRECISION: 100 })
property RANGE
RANGE?: number | [number, number];An integer, magnitude 1 to 1e+9, or an array, [-1e+9 to -1, 1 to 1e+9]. Default value:
[-1e+9, 1e+9].The exponent value(s) beyond which overflow to Infinity and underflow to zero occurs.
If a single number is assigned, it is the maximum exponent magnitude: values wth a positive exponent of greater magnitude become Infinity and those with a negative exponent of greater magnitude become zero.
If an array of two numbers is assigned then the first number is the negative exponent limit and the second number is the positive exponent limit.
For example, to emulate JavaScript numbers in terms of the exponent values at which they become zero and Infinity, use [-324, 308].
BigNumber.config({ RANGE: 500 })BigNumber.config().RANGE // [ -500, 500 ]new BigNumber('9.999e499') // '9.999e+499'new BigNumber('1e500') // 'Infinity'new BigNumber('1e-499') // '1e-499'new BigNumber('1e-500') // '0'BigNumber.config({ RANGE: [-3, 4] })new BigNumber(99999) // '99999' e is only 4new BigNumber(100000) // 'Infinity' e is 5new BigNumber(0.001) // '0.01' e is only -3new BigNumber(0.0001) // '0' e is -4The largest possible magnitude of a finite BigNumber is 9.999...e+1000000000. The smallest possible magnitude of a non-zero BigNumber is 1e-1000000000.
property ROUNDING_MODE
ROUNDING_MODE?: BigNumber.RoundingMode;An integer, 0 to 8. Default value:
BigNumber.ROUND_HALF_UP(4).The rounding mode used in operations that involve division (see
DECIMAL_PLACES) and the default rounding mode of thedecimalPlaces,precision,toExponential,toFixed,toFormatandtoPrecisionmethods.The modes are available as enumerated properties of the BigNumber constructor.
BigNumber.config({ ROUNDING_MODE: 0 })BigNumber.set({ ROUNDING_MODE: BigNumber.ROUND_UP })
interface Format
interface Format {}See
FORMATandtoFormat.
property decimalSeparator
decimalSeparator?: string;The decimal separator.
property fractionGroupSeparator
fractionGroupSeparator?: string;The grouping separator of the fraction part.
property fractionGroupSize
fractionGroupSize?: number;The grouping size of the fraction part.
property groupSeparator
groupSeparator?: string;The grouping separator of the integer part.
property groupSize
groupSize?: number;The primary grouping size of the integer part.
property prefix
prefix?: string;The string to prepend.
property secondaryGroupSize
secondaryGroupSize?: number;The secondary grouping size of the integer part.
property suffix
suffix?: string;The string to append.
interface Instance
interface Instance {}property c
readonly c: number[] | null;The coefficient of the value of this BigNumber, an array of base 1e14 integer numbers, or null.
property e
readonly e: number | null;The exponent of the value of this BigNumber, an integer number, -1000000000 to 1000000000, or null.
property s
readonly s: number | null;The sign of the value of this BigNumber, -1, 1, or null.
index signature
[key: string]: any;Type Aliases
type Constructor
type Constructor = typeof BigNumber;type ModuloMode
type ModuloMode = 0 | 1 | 3 | 6 | 9;type RoundingMode
type RoundingMode = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8;type Value
type Value = string | number | bigint | Instance;Package Files (2)
Dependencies (0)
No dependencies.
Dev Dependencies (0)
No dev dependencies.
Peer Dependencies (0)
No peer dependencies.
Badge
To add a badge like this oneto your package's README, use the codes available below.
You may also use Shields.io to create a custom badge linking to https://www.jsdocs.io/package/bignumber.js.
- Markdown[](https://www.jsdocs.io/package/bignumber.js)
- HTML<a href="https://www.jsdocs.io/package/bignumber.js"><img src="https://img.shields.io/badge/jsDocs.io-reference-blue" alt="jsDocs.io"></a>
- Updated .
Package analyzed in 5850 ms. - Missing or incorrect documentation? Open an issue for this package.
