I have a large HTML string contained in a var. I\'m using it to write to innerHTML.
The first example (with backtick syntax), which is the
The backtick syntax for a string is a Template Literal, which allows for interpolation of variables within a string and multiline strings. They are not supported by Internet Explorer 11 (see more here: ECMAScript 6 compatibility table).