Before ES6(ECMAScript 2015), we have used single quotes('...') and double quotes("...") to wrap string literals. A simple example is, msg = ; var "Hello, I'm Joe and my favorite color is purple" There were limitations when we had to concatenate multiple strings and the string literal has dynamic values. The readability of these concatenations used to be a challenge as well. frag1 = ; val1= ; frag2 = ; val2 = ; msg = frag1 + + val1 + + frag2 + + val2; var "Hello, I'm" var "Joe" var "and my favorite color is" var "purple" var ' ' ' ' ' ' Do you see another problem? If someone only reading the line where the concatenation takes place, he/she doesn't have much idea of the resultant string. With ES6 we have got template literals which are string literals that allow embedding expressions. Template literals are enclosed by the backtick (` `) characters instead of single or double-quotes. Template literals can contain placeholders that are specified by the dollar sign($) and curly braces(${expression}). The above example can be written with template literals as, name = ; color = ; message = ; .log(message); const 'Joe' const 'purple' const `Hello, I'm and my favorite color is ` ${name} ${color} console Output, Hello, I'm Joe and my favorite color is purple This is much better and favorable for developers to use. What is the Tagged Template Literal? A Tagged Template Literal is usually a function that precedes a template literal to help you in manipulating the output. It's fine if you find it confusing. We will understand it in a few simple steps. Let us take an example of this template literal again, `Hello, I'm and my favorite color is ` ${name} ${color} We want to manipulate the output such that, it returns a string like the below when we pass the name as, Joe and color as, green. Hello Joe, Have a Nice Day! We know your favorite color is green How about, displaying this message in the color that is passed as an expression to the template literal? Like this when the color value is green, Welcome Tag function Let us first create a tag function. This is a regular JavaScript function that should return a value as per your needs. This return value is usually a manipulated output based on the template literal strings and expressions. { ; } ( ) function introduce return 'introduce...' Next, We mention the tag function before the template literal so that, the tag function gets associated with it. name = ; color = ; message = introduce ; const 'Joe' const 'green' const `Hello, I'm and my favorite color is ` ${name} ${color} Please note the tag function introduce before the template literal. Tag function takes arguments The first argument of a tag function contains an array of string values. The remaining arguments are related to the expressions. { .log( , strings); .log( , arg0); .log( , arg1); ; } name = ; color = ; message = introduce ; ( ) function introduce strings, arg0, arg1 console 'strings' console 'arg0' console 'arg1' return 'introduce...' const 'Joe' const 'purple' const `Hello, I'm and is my favorite color!` ${name} ${color} The argument strings is an array of all the strings in the template literals and both arg0 and arg1 represent the name and color values here. Output, Passing the expressions as individual arguments is not so great. Think about it, if there are 10 expressions in a template literal. We can make use of JavaScript rest operator(...values) to collect the arguments as an array. { .log( , strings); .log( , values); ; } name = ; color = ; message = introduce ; ( ) function introduce strings, ...values console 'strings' console 'values' return 'introduce...' const 'Joe' const 'purple' const `Hello, I'm and is my favorite color!` ${name} ${color} In this case, both strings and values are arrays. The strings argument contains all the strings where the values argument contains all the expression values. Output, Now, we can do everything possible with these strings and expression values to manipulate them. The desired output To get the desired output after the string manipulation, we will write a small logic inside the function. introduce unction introduce(strings, ...values) { msg = ; msg; } name = ; color = ; message = introduce ; .log(message); let `<span style="color: "> Hello , Have a Nice Day! We know your favorite color is <u> </u> </span>` ${values[ ]} 1 ${values[ ]} 0 ${values[ ]} 1 return const 'Joe' const 'green' const `Hello, I'm and is my favorite color!` ${name} ${color} console We create a new template literal using the expression values and wrap it with the span element. Please notice, we have added a style to the span element to color the text as well. Output, Hello Joe, Have a Nice Day! We know your favorite color is green < = > span style "color:green" < > u </ > u </ > span Now, if you use the above output to add as innerHTML you can render it in the browser. .body.innerHTML = message; document Output, The text color will change as and when you change the color variable value in your code. Did you know 💅? If you are familiar with , you probably know about the . But, did you know, styled-components are created using tagged template literals? reactjs styled-component Yes true. Notice the syntax of a button created with the styled-component, Button = styled.button const ` background-color: papayawhip; border-radius: 3px; color: palevioletred; ` Does it look familiar to the tagged template literal we learned? Read this awesome article to know more about it. The magic behind 💅 styled-components Conclusion Tagged Template Literals are powerful and the usage will vary from one application to another. At the same time, if you were new to it before reading the article, lookout for opportunities to use it. I have updated the with code examples. You may want to have a look. js-tips-tricks project in GitHub You may also like, My Favorite JavaScript Tips and Tricks Explain Me Like I am Five: What are ES6 Symbols? How to use JavaScript Collection with Map Everything you need to know about JavaScript Set JavaScript: Equality comparison with ==, === and Object.is If it was useful to you, please Like/Share so that, it reaches others as well. You can @ me on Twitter ( ) with comments, or feel free to follow me. @tapasadhikary Previously published at https://blog.greenroots.info/what-exactly-is-javascript-tagged-template-literal-ckg6hyekf000n8bs1hz9udvzc