📚Template Literals in JavaScript
❓What is Template Literals
Template Literals are the way of writing "strings" using the backticks (``) instead of using the quotes.
For Example:-
const name = "Pratik";
const age = 10;
console.log(`H
js-learning-templateliterals.hashnode.dev3 min read