Template Strings

We will learn how to write a string in ES2015 and use it with JavaScript expressions.

What are template strings?

Template strings in ES2015 offer a third alternative to write a string. Strings can already be declared by using the following two ways:

  1. Single quotation marks: 'Example'
  2. Double quotation marks:
...