01 / 06
A chain of + is hard to read
Once the + pile up, as in name + " is " + age, it gets hard to tell which bits are text and which are variables.
It is also easy to lose count of your quotes.
const name = "Yui";const age = 12;console.log(name + " is " + age);Result
Yui is 12