显示为字符串的命名变量
const sayHi = (name) => {
console.log('Hello there ${name}')
}
module.exports = sayHi
在 console.log 函数中,我调用变量名称,但它将其选择为字符串。我正在学习nodejs,我不知道为什么会遇到这个问题。 ps:屏幕截图中的变量名称有错误,但这不是问题。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从这里复制的
https://stackoverflow.com/a/32695337/10776298
使用 Node.js v4 ,您可以使用 ES6 的 模板字符串
您需要将字符串括在反引号内
`
而不是'
Copied from here
https://stackoverflow.com/a/32695337/10776298
With Node.js v4 , you can use ES6's Template strings
You need to wrap string within backtick
`
instead of'