Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 238 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 238 Bytes

BigNumber

Support calculation of big numbers in JavaScript.

Usage

const BigNumber = require('/path/to/bignumber');

const a = new BigNumber(2);
const b = a.pow(100);
console.log(`2 ** 100 = ${b.toString()}`);