+ 1
Which one are we calling template literal?
Which one is considered as template literal? The whole concatenated string with variable within backtick (``) or only this ${}?
2 Respuestas
+ 3
A string with created using backticks `` is called a template literal. It necessarily need not have an expression ${} inside it.
+ 1
Thanks :)