显示为字符串的命名变量

发布于 2025-01-09 22:24:51 字数 351 浏览 0 评论 0原文

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

Here is what it looks like

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

红墙和绿瓦 2025-01-16 22:24:51

从这里复制的
https://stackoverflow.com/a/32695337/10776298

使用 Node.js v4 ,您可以使用 ES6 的 模板字符串

var my_name = 'John';
var s = `hello ${my_name}, how are you doing`;
console.log(s); // prints hello John, how are you doing

您需要将字符串括在反引号内 ` 而不是 '

Copied from here
https://stackoverflow.com/a/32695337/10776298

With Node.js v4 , you can use ES6's Template strings

var my_name = 'John';
var s = `hello ${my_name}, how are you doing`;
console.log(s); // prints hello John, how are you doing

You need to wrap string within backtick ` instead of '

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文