Skip to content

Commit 6452f6d

Browse files
committed
Another functions is added
1 parent d88e22c commit 6452f6d

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

index.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,11 @@ const calc = (a, b) => {
77
console.log(a+b);
88
}
99

10-
calc(4, 5);
10+
calc(4, 5);
11+
12+
13+
const multi = (a, b) => {
14+
console.log(a*b);
15+
}
16+
17+
multi(4, 5);

0 commit comments

Comments
 (0)