UNPKG
malli1907
Version:
latest (1.0.0)
1.0.0
avih
malli1907
/
calci.js
17 lines
(16 loc)
•
200 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export function add (
a
,
b
) { return
a
+
b
; } export function sub (
a
,
b
) { return
a
-
b
; } export function mul (
a
,
b
) { return
a
*
b
; } export function
div
(
a
,
b
) { return
a
/
b
; }