***
- Template String provide an easy way to [interpolate](https://en.wikipedia.org/wiki/String_interpolation) variables and expressions into strings. The expressions are embedded by wrapping them inside `${}`.
- It use back-ticks (\`\`) rather than the quotes (`""`) to define a string.
```js
console.clear();
function getFullName(firstName, lastName) {
return `${firstName} ${lastName}`;
}
const firstName = 'John';
const lastName = 'Lark';
const grettings = `Hello ${getFullName(firstName, lastName)}`;
console.log(grettings);
```
- It allow multi-line strings:
```js
let text =
`The quick brown box
jumps over the lazy dog`;
```
***
**References**:
- [JavaScript Template Strings](https://www.w3schools.com/js/js_string_templates.asp)