Template literal
[es6], [ecmascript2015]
Template literal là tính năng cho phép ==nhúng biểu thức== Javascript ( biến, kết quả phép toán) bên trong một chuỗi string.
Cú pháp Template Literal
Text ${javascript_expression} other text
Example:
let firstName = "Peter";
console.log(`Hello everyone! My name is ${firstName}.`);