addition2
Simple addition features of two digit number and so on
Installation
npm install addition2
How to Use
const addition = require(‘addition2’); // require the modules
## Add Two digit Numbers
var result = addition.add(a,b) // invoke the function and pass the parameters and it returs the result.
## Add three digit Numbers
var result = addition.addThreeDigit(a,b,c) // invoke the function and pass the parameters and it returs the result.