Strings are text wrapped in quotes.
Use Backticks (`) for super-powers like multi-line text and variables!
// Modern (Backticks) let dynamic = `Hello ${name}`; // Old School (Concatenation) let simple = 'Hello ' + name;
You now know how to manipulate text like a pro.
Ready for logical truth with Booleans?