UNPKG
vmymath
Version:
latest (1.0.0)
1.0.0
Basic Mathematics Function
github.com/VarunAngadi/MyMath
VarunAngadi/MyMath
vmymath
/
index.js
20 lines
(17 loc)
•
244 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
function
add
(
a,b
){
return
a+b }
function
subtract
(
a,b
){
return
a-b }
function
multiply
(
a,b
){
return
a*b }
function
divide
(
a,b
){
return
a/b }
module
.
exports
={ add, subtract, multiply, divide}