emplate Literals are a modern (ES6) way to create strings using backticks (` `).
They allow:
- Multi-line strings
- Variable interpolation
- Embedding expressions
- Tagged templates
- Cleaner, more readable code
1. Basic Syntax
Template literals use backticks (not quotes).
2. String Interpolation (Embedding Variables)
Use ${...} inside backticks.
