JavaScript Template Literals
Synonyms: Template Literals Template Strings String Templates Back-Tics Syntax Back-Tics Syntax Template Literals use back-ticks (“) rather than the quotes (“”) to define a string: Example <!DOCTYPE html> <html> <body> <h2>JavaScript Template Literals</h2> <p>Template literals use back-ticks (“) to define a string:</p> <p id=”demo”></p> <p>Template literals are not supported in Internet Explorer.</p> <script> let text =… Read More »