UNPKG
sourabh_calculator_module
Version:
latest (1.0.0)
1.0.0
This is simple calculator with add and sub method
sourabh_calculator_module
/
index.js
8 lines
•
178 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
module
.
exports
.
Calculator
=
function
(
) {
this
.
addition
=
function
(
a,b
){
return
a + b; }
this
.
subraction
=
function
(
a,b
){
return
a - b; } }