String Manipulation Methods

What advanced string manipulation technique is shown here?
const template = '${name} is ${age} years old';
const result = template.replace(/\${(\w+)}/g, (_, key) => values[key]);
Next Question (9/20)