string array typescript 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 array
let list: number[] = [1, 2, 3];
Example 4: type script array
let list: number[] = [1, 2, 3];