UNPKG
helper_function_for_calculation
Version:
latest (1.1.0)
1.1.0
1.0.1
1.0.0
Just common Calculations
priyanshu686/WEB_DEV
helper_function_for_calculation
/
index.js
12 lines
(10 loc)
•
181 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
const
add
= (
a,b
)=>{
return
a+b; }
const
subtract
= (
a,b
)=>{
return
a-b; }
const
multiply
= (
a,b
)=>{
return
a*b; }
module
.
exports
= {add,subtract,multiply};