ts array of strings code example
Example 1: typescript array of strings
type IArrayOfStrings = Array<string>
Example 2: typescript how to create an array instance
var myInstance:MyArrayType[] = [];
Example 3: typescript list
enum Color {
Red = "red",
Green = 2,
Blue = 4,
}
let c: Color = Color.Green;Try