2021-11-30 18:16:23 +05:30

10 lines
134 B
JavaScript

const test = function(val){
console.log(val);
}
test('hello 1');
function test1(val){
console.log(val);
}
test1("hello 2");