UNPKG
mwizerwas-calc-2
Version:
latest (2.0.0)
2.0.0
1.0.2
1.0.1
1.0.0
Learning how to use npm and express
mwizerwas-calc-2
/
index.js
12 lines
(9 loc)
•
249 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
module
.exports.add =
function
add
(num1,num2,num3,num4)
{
return
num1+num2+num3+num4 }
module
.exports.
sub
=
function
sub
(num1,num2)
{
return
num1-num2 }
module
.exports.multiply =
function
multiply
(num1,num2)
{
return
num1*num2 }