Files
JavaScript-from-Beginner-to…/Chapter 06/Exercise 6.8
T
2021-11-25 20:26:58 +05:30

10 lines
134 B
Plaintext
Vendored

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