Skip to content
TypeScript·Beginner·Conceptual·1 min read

What is the difference between T[] and Array<T>?

Short interview answer

They normally describe the same mutable array relationship, with Array<T> often easier to compose in complex generic syntax and T[] usually more concise.

Key takeaway

Explain the underlying mental model clearly, then support it with a concrete example and its trade-offs.

← Back to Generics

Related questions