UNPKG
szhmqd27zxt
Version:
latest (1.0.0)
1.0.0
这是一个吊炸天的计算器
szhmqd27zxt
/
lib
/
calc.js
19 lines
(15 loc)
•
256 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//加法
const
add
=(
x,y
)=>x+y;
//减法
const
subtraction
=(
x,y
)=>x-y;
//乘法
const
multiplication
=(
x,y
)=>x*y;
//除法
const
division
=(
x,y
)=>x/y;
//导出
module
.
exports
={ add, subtraction, multiplication, division }