const sayHi = (name) => {
console.log('Hello there ${name}')
}
module.exports = sayHi
In the console.log function I am calling the variable name but it is picking it as a string. I am learning nodejs and i dont know why i am getting this problem. ps: There is a mistake with the screenshot in terms of the variable name but that is not the problem.