Hi There , I have problem in my this solution, can any one help? My code is as follows: export const sayHello = (name) => { let greeting = ' "Hello" + "," + name + "!"'; return greeting; };
sayHello("John"); sayHello("Sandy");
Friends I have solved it and I am happy to proceed to another task. Here is the Solution: const sayHello = (name) => {
return 'Hello, ' + ' ' + name + '!';
}
sayHello('John'); sayhello('Sandy');
fazalz congratulations!
Coderslang_Master Thanks