${}(美元符号和大括号)在JavaScript中的字符串中是什么意思?

我没有在这里或MDN上看到任何东西。我敢肯定我只是错过了一些东西。在某个地方必须有一些关于此的文档吗?

从功能上讲,它允许您将变量嵌套在字符串中,而无需使用运算符进行串联。我正在寻找有关此功能的文档。+

例:

var string = 'this is a string';

console.log(`Insert a string here: ${string}`);

答案 1

您说的是模板文本

它们允许多行字符串和字符串插值。

多行字符串:

console.log(`foo
bar`);
// foo
// bar

字符串插值:

var foo = 'bar';
console.log(`Let's meet at the ${foo}`);
// Let's meet at the bar

答案 2

如上面的注释中所述,您可以在模板字符串/文本中具有表达式。例:

const one = 1;
const two = 2;
const result = `One add two is ${one + two}`;
console.log(result); // output: One add two is 3