Template literals were introduced in ES6 and provide a modern way to work with strings in JavaScript. You can use multi-line strings, tagged templates, and variable interpolation features with them.

Before ES6, we can only use single quotes (') or double quotes (") to wrap a string.

#javascript 

JavaScript Template Literals
3.05 GEEK