UNPKG
krushitha
Version:
latest (1.0.0)
1.0.0
Avanthi college
krushitha
/
calci.js
19 lines
(16 loc)
•
186 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
; }