Arrays are ordered lists of values written as T[] or Array<T>:
const numbers: number[] = [1, 2, 3];
const users: User[] = [{ id: 1, name: "Alice" }];Now that you can model a single object, it's natural to work with arrays of objects like User[] or Product[].
In this category, you'll:
.map(), .filter(), and .find() with proper typesT | undefined from .find()By the end, you'll be comfortable writing small, typed helpers that transform arrays safely and predictably.