Template Literals in JavaScript
Let's say you have:
let age = 23;
let name = "Harshil";
And you need to print them together. The old way looks like this:
console.log("My name is " + name + " & my age is " + age);
This gets messy f
harshil-sde.hashnode.dev2 min read