In TypeScript, just like in JavaScript, an object contains a set of keys and values. Objects are used to group and pass data to functions. In TypeScript, we represent those objects, with object types, usually interfaces or types.
Here [...]
TypeScript adds a few new data types that the developer can use. One of them is the Tuple type.
A Tuple is a type of Array that knows how many elements it contains and at which position is which [...]