Template Literals in JavaScript (Why They’re Way Better Than +)
If you’ve ever written strings using +, you know it gets messy fast.
Like this:
let name = "Rishabh"; let age = 20;
let text = "My name is " + name + " and I am " + age + " years old.";
It works… but
kumar-rishabh.hashnode.dev2 min read