const github = "https://github.com/RashedMahyoub"
1function greet(name) { 2 return 'Hello, ' + name + '!'; 3} 4 5console.log(greet('World')); 6