Template Literals in JavaScript
You know how we usually join strings or variables in JavaScript using +, right?
const firstname = "Ami";
const lastname = "Ami";
const score = 90;
// Old way
const message = "Hello, " + firstname + l
amirana.hashnode.dev4 min read