This commit is contained in:
Karan
2021-11-25 19:52:11 +05:30
committed by GitHub
parent 3efb74a8ce
commit 0089f8848c
-7
View File
@@ -1,7 +0,0 @@
const val1 = 10;
const val2 = 20;
console.log(adder(val1, val2));
console.log(adder(20, 30));
function adder(a, b) {
return a + b;
}