11.
What is the correct type of annotation for creating an array of dates?
string[]
Array<string>
Date[]
Array<Date>
Correct: C, D
The correct type of annotation for creating an array of dates in TypeScript is Array<Date> and Date[]. This notations declares an array that can only contain elements of the Date type.