Tagged Templates in JavaScript

The JavaScript Tagged Templates allow us to tag template strings or template literals using a function. Once tagged, we can parse the Templates strings using the tagged function. It allows us more control over how the templates are converted to a string.

Template strings

We can create a Template String in JavaScript (or Template Literals) by enclosing the string inside a back-tick. What makes the Template strings powerful is that we can include a expression inside them. The expression must be specified inside dollar sign and curly braces (${expression}). JavaScript evaluates the expression and coerces the result into a string. This allows us to create a dynamic string.

In the following example, we have included the expression ${playerName} inside the string. When we run the code ${playerName} is evaluated and its value Sachin Tendulkar is inserted in the final string.

But what if want to run some business logic and have more control over the transformation of the given string. This is where we use the Tagged Templates.

What is a Tagged Template?

The Tagged Template is a template string, to which we tag a function (attach a function). It consists of two parts. One is Template String and the other one is a function (which we call Tagged function). The Tagged function is where we write our custom logic to parse the template string.

How to Create a Tagged Template

To create a tagged template, First, we need to create a function. Then use it to tag the Template string by placing before it.

In the following example we create a function transform. The function just returns the message hi

We tag the Template string with the function. That is done by placing the function name before it without the customary (). Now this Template string is a tagged template.

When we run the code, you will see Hi in the output, which is what our tagged function returns.

Tagged Template Example

Parameters to Tagged Function

The tagged function receives following arguments.

  1. The first argument to the function is the array of template strings. It is split using the expression as the separator.
  2. The evaluated expressions are the subsequent arguments.

Consider the following template string

The first argument to the tag function is an array of strings (Strings).

The first element in the array is the string up to the first expression $(firstName), which is “Hello,”. The second element is the string between the first expression (${firstName}) and the second expression (${lastName}) i.e. a blank string. The third element is between the second expression (${lastName}) and the third expression (${topic}). i.e. “. Welcome to”. And the last element is from the last expression ${topic} to the end of the string i.e. “Tutorial”

Hence our first argument is [ 'Hello, ', ' ', '. Welcome to ', ' Tutorial' ]

The expressions are evaluated and passed as the subsequent arguments in the order of occurrence.

Tagged Templates in JavaScript

In the above example, we knew the number of arguments beforehand. But, if there are a variable number of expressions, then it would be better to make use of the rest operator as shown below

Now once we have the required arguments, we can use them in the function to fine-tune the output

Note that the strings array is always be going to be one more than the expr array. Hence when we come to the last string in the loop, the expr would be undefined

Raw strings

The ES6 also has a useful method String.raw, which prevents escape characters from being interpreted. The backslash is a special character ( escape ) in JavaScript. When JavaScript encounters a backslash, it tries to escape the following character.

Take a look at the following example. The variable filePath contains several \. When we use this expression in Template string, the backslashes are removed from the output as JavaScript treats them as escape character.

Here you can make use of String.raw tagged function to return the raw string.

The following example shows how to use raw method inside the tagged function. In this case newline character \n is ignored.

Without raw method, the \n is interpreted correctly and a new line is inserted in the output.

2 thoughts on “Tagged Templates in JavaScript”

    1. upsss
      this one
      function transform(strings, … expr) {
      let str = ”;
      strings.forEach((string, i) => {
      str += string + (expr[i] || ”);
      });
      return str;
      }

Leave a Comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Scroll to Top