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]);
const template = '${name} is ${age} years old';
const result = template.replace(/\${(\w+)}/g, (_, key) => values[key]);