Template Literals in JavaScript: Write Strings the Modern Way
Every JavaScript developer has written something like this:
var greeting = "Hello, " + firstName + " " + lastName + "! You have " + count + " messages.";
It works. But it is painful to read, painful
blogs.arnabsamanta.in11 min read