在 JS 中使用这些值的确切含义和区别是什么:${abc} vs {abc} vs (abc)
What are the exact meanings and differences using these values in JS : ${abc} vs {abc} vs (abc)
在 JS 中使用这些值的确切含义和区别是什么:${abc}
vs {abc}
vs (abc)
None 其中必须是布尔值。 ${abc}
用于模板字符串内部以在字符串中嵌入表达式。
`foo ${abc} bar`
相当于
"foo " + abc + " bar"
{abc}
是一个对象 shorthand 符号,等同于 {abc: abc}
。 (abc)
只是 abc
被括号括起来,相当于 abc
.
在 JS 中使用这些值的确切含义和区别是什么:${abc}
vs {abc}
vs (abc)
None 其中必须是布尔值。 ${abc}
用于模板字符串内部以在字符串中嵌入表达式。
`foo ${abc} bar`
相当于
"foo " + abc + " bar"
{abc}
是一个对象 shorthand 符号,等同于 {abc: abc}
。 (abc)
只是 abc
被括号括起来,相当于 abc
.