Tuple

A tuple is a type that allows you to store an array with a fixed number of elements of different types.

Snippet:

let user: [string, number] = ["John", 25];

Example:

let point: [number, number] = [10, 20];