array objects in typescript code example
Example 1: array of objects typescript
let userTestStatus: { id: number, name: string }[] = [
{ "id": 0, "name": "Available" },
{ "id": 1, "name": "Ready" },
{ "id": 2, "name": "Started" }
];
userTestStatus[34978].nammme; // Error: Property 'nammme' does not exist on type [...]
Example 2: typescript how to create an array instance
var myInstance:MyArrayType[] = [];
Example 3: typescript array of objects
interface User {
[index: number]: {
firstname: string;
lastname: string;
age: number;
}
}
Example 4: array in typescript
const count = [...Array(5)];
count.map((_) => console.log('hi'));