b - template literals template literals provide a new way to work with strings They allow to embed expressions inside string literals using ` This makes it easier to create multi-line strings and perform string interpolation. Template Literals, introduced in ES6 (ECMAScript 2015) let greeting = `Hello, ${name}!`; → Basic Usage let message = ` This is a multi-line string.` → Multi-Line Strings `The sum of ${a} and ${b} is ${a + b}.` → Expression Interpolation