Exercise 6.8

This commit is contained in:
Karan
2021-11-24 21:01:34 +05:30
committed by GitHub
parent 487d0f8f74
commit 46efb4d650
+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");