https://github.com/plibither8/big-number.js
big-number.js is a calculator for arbitrarily large integers, for JavaScript.
https://github.com/plibither8/big-number.js
Last synced: about 2 months ago
JSON representation
big-number.js is a calculator for arbitrarily large integers, for JavaScript.
- Host: GitHub
- URL: https://github.com/plibither8/big-number.js
- Owner: plibither8
- Created: 2018-01-27T08:15:35.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-28T15:14:09.000Z (about 7 years ago)
- Last Synced: 2025-01-15T20:39:13.022Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# big-number.js
### Big Number Arithmetic and Calculator for JavaScript
big-number.js is large number calculator for JavaScript.
This module can perform basic arithmetic operations - addition, subtraction, multiplication and (soon enough) division - on arbitrarily large integers. Theoretically, it can perform calculations on any integer smaller than infinity, but of course, the browser engine and memory capability of the user's machine might limit it to smaller integers.
In JavaScript, a string can theoretically be infinitely long, and this is what the module exploits in order to perform these tasks.