Array type notation: `T[]` vs. `Array ` in TypeScriptBoth T[] and Array<T> are equivalent notations in TypeScript, with preferences leaning toward Array<T> for readability and clarity.