Template Literals
Template literals use backticks (`) instead of quotes. They allow multi-line strings and easy string interpolation.
String Interpolation
Instead of using + to combine strings and variables, use ${variable} inside backticks.
Practice
Challenge 1: Create a template literal that calculates math inside the ${} block, like ${5 * 10}.