This blog post looks at the implementation of ES6 Template Strings in Mozilla’s SpiderMonkey JavaScript Engine. Template Strings without Substitutions The simplest form of a template string is `hello` Note the back-tick ( ` ) character. That’s just plain boring. It is functionally equivalent to the string literal “hello”. Something a bit more interesting is `hello there` Note that we cannot split

