UNPKG
add_and_mult_module
Version:
latest (1.0.1)
1.0.1
This is simple Calculator module with add and mult methods
add_and_mult_module
/
index.js
8 lines
•
225 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
module
.
exports
.
Calculator
=
function
(
){
this
.
addition
=
function
(
number1,number2
){
return
number1+number2; },
this
.
multiplication
=
function
(
number1,number2
){
return
number1*number2; } }