👨💼 Fantastic work! You've mastered the fundamental operators in JavaScript.
You've learned:
- ➕ Arithmetic -
+,-,*,/,%for math operations - ⚖️ Comparison -
===,!==,<,>,<=,>=for comparing values - 🔗 Logical -
&&,||,!for combining conditions
Key takeaways:
- Always use
===instead of==for comparisons &&requires ALL conditions to be true||requires ANY condition to be true!flips true to false and vice versa
📝 These operators will appear in almost every JavaScript program you write.
Make sure you're comfortable with how they work!
Test Your Knowledge
Retrieval practice helps solidify learning by actively recalling information. Use this prompt with your AI assistant to quiz yourself on what you've learned.
Please quiz me on exercise 2 using the epicshop MCP server. Call the get_quiz_instructions tool with exerciseNumber "2" to get the quiz instructions, then quiz me one question at a time.