UNPKG
sum_and_mult_module
Version:
latest (1.0.0)
1.0.0
simple calculator
sum_and_mult_module
/
index.js
8 lines
•
186 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
module
.
exports
.
Calculator
=
function
(
){
this
.
addition
=
function
(
no1,no2
){
return
no1+no2; }
this
.
multiplication
=
function
(
no1,no2
){
return
no1*no2; } }