This commit is contained in:
Karan 2021-11-25 19:52:11 +05:30 committed by GitHub
parent 3efb74a8ce
commit 0089f8848c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
}