📚 JavaScript Arrays Tutorial

Arrays in JavaScript let you store multiple values in a single variable. They are one of the most used data structures in JS — super handy for lists, collections, and sequences.

🔤 Example: Declaring and Accessing Arrays

Console output will appear here...
🔑 Pro Tip: Arrays are zero-indexed, so fruits[0] gets the first item.

📚 Array Methods Example

Console output will appear here...

🔧 Common Array Methods Cheat Sheet

🧮 Example: Using map() to Modify Arrays

Console output will appear here...

⚡ Quick Tips