This commit is contained in:
Karan
2021-11-30 18:16:23 +05:30
parent 17d89b436a
commit b87492137f
15 changed files with 0 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
const test = function(val){
console.log(val);
}
test('hello 1');
function test1(val){
console.log(val);
}
test1("hello 2");