TypeScript:
Interpolating a string

How to:

To interpolate a string in TypeScript, you use backticks ` and ${expression} syntax:

let user = 'Charlie';
let age = 27;

// Interpolating a string
let greeting = `Hi, I'm ${user} and I'm ${age} years old.`;

console.log(greeting);  // Output: Hi, I'm Charlie and I'm 27 years old.

Deep Dive:

String interpolation isn’t unique to TypeScript; it’s also in JavaScript since ES6 and many other languages. Before this, we concatenated strings using the + operator, which looked like this:

let greeting = 'Hi, I\'m ' + user + ' and I\'m ' + age + ' years old.';

The + method works, but it’s clunkier and harder to read, especially with multiple variables. With interpolation, templates are cleaner and errors are easier to avoid.

What’s happening under the hood? Interpolated strings are “syntactic sugar”—a simplified way to use the more complex feature known as “template literals”. When compiled, your friendly, readable interpolation gets converted to a format the JavaScript engine can understand, often involving concatenation or other string manipulation methods.

An alternative to interpolation would be using template functions or libraries, but for most cases, interpolation with backticks is the handiest tool for the job.

See Also: