3 thoughts on “Valid template string literal syntax:

  1. These template literals are unusual because they can be interpolated with expressions. In other works instead of “hello” + name + “!” You can do `hello ${name}!`. This means you can insert any expression inside a template literal including other template literals. ie. It’s a recursive structure.

    Like

Leave a comment