const sayHello = (name)=> {
return `Hey There ${name}`
}
console.log(sayHello('Raju'));
console is displaying "Hey There ${name}" but I was expected "Hey There Raju". where is the fault.
const sayHello = (name)=> {
return `Hey There ${name}`
}
console.log(sayHello('Raju'));
console is displaying "Hey There ${name}" but I was expected "Hey There Raju". where is the fault.