angular typescript array of ostring code example
Example 1: typescript how to create an array instance
var myInstance:MyArrayType[] = [];
Example 2: type script array
let list: number[] = [1, 2, 3];
var myInstance:MyArrayType[] = [];
let list: number[] = [1, 2, 3];