+ 1
I am not able to use template string in Sublime 3 what can I do
I use like this const firstName='Name'; const age=22; const info=${firstName + age}; console.log(info); ??
2 Answers
+ 3
template strings must be enclosed by backticks:
const info = `${firstName + age}`;
0
Thanks manđ