Array is a generic type.
TypeScript ⟩
Array
ReadonlyArray ⭐️
T[ ] : shorthand for Array<T>
readonly T[ ] : shorthand for ReadonlyArray<T>
interface Array<T> { length: number; // remove last element & returns it. pop(): T | undefined; // append new elements & return new length. push(...items: T[]): number; }
Last updated 3 years ago
Was this helpful?