This is a demo of function addTwoNumberStrings
which takes two strings of big decimal number and return total as a string of big decimal number.
- Input: Strings of two big positive integers A and B (decimal)
- Output: A + B as string in decimal
function add(left: string, right: string): string;
- The function is at file
src/lib/add-two-number-strings.js
- Its unit-test is at file
test/src/lib/add-two-number-strings.test.js
- All UI components is at directory
src/components
Read more at CONTRIBUTING.md
https://ksxgithub.github.io/add-two-number-strings/
MIT © 2017 Hoàng Văn Khải