Template Literals:
*
Syntax
Template literals are a type of string literal that allows values to be interpolated, and optionally the interpolation and construction behaviour to be controlled using a “tag” function.
Welcome, ${user.name}!
Welcome, (\\w+)!);
INSERT INTO User (name) VALUES (${name})
Template Literals were first specified by ECMAScript 6 §12.2.9.