Back-Tics Syntax
Template Strings use back-ticks (“) rather than the quotes (“”) to define a string:
Example
let text = `Hello World!`;
Quotes Inside Strings
Template Strings allow both single and double quotes inside a stringn : Continue reading JavaScript Template Strings