Template Literals in JavaScript
Problems with traditional string concatenation
Before template literals, strings were combined like this:
const name = "John";
const age = 25;
const message = "My name is " + name + " and I am " + ag
skullcoder.hashnode.dev2 min read