JavaScript Template Literals Explained
Template literals is a feature in ECMAScript which uses backticks ` as its syntax.
Good thing is it makes creating complex strings easier and you do not need to escape quotes in your string. Look at these:
let word = `he said, "bring them back"`;
How...
mwendwabundi.hashnode.dev2 min read