Objects & Arrays

Objects Basics

Objects store key-value pairs. Properties can be accessed using dot notation or bracket notation.

Arrays & Methods

Arrays store lists of values. Use push, pop, shift, map, filter, and reduce to manipulate lists.

Destructuring

Destructuring extracts values from arrays or objects into variables directly.