Array [] in Typescript
![Array [] in Typescript](/content/images/size/w600/2023/10/eyes-on-the-code--1--2.png)
An array is another data type in TypeScript that allows us to store collections of values of the same type. We can define an array using square brackets []. However, it is also recommended to specify the type of elements that will be stored in the array instead of using any.