how to declare array type in typescript code example
Example 1: create array of... in typescript
let fruits: Array<string>;
fruits = ['Apple', 'Orange', 'Banana'];
let ids: Array<number>;
ids = [23, 34, 100, 124, 44];
Example 2: typescript array of objects
interface Product {
name: string;
price: number;
description: string;
}
let pen: Product = {
name: "Pen",
price: 1.43,
description: "Userful for writing"
}
let products: Product[] = [];
products.push(pen);
console.log(products);
Example 3: typescript array
let list: number[] = [1, 2, 3];
Example 4: type script array
let list: number[] = [1, 2, 3];
Example 5: array in typescript
const count = [...Array(5)];
count.map((_) => console.log('hi'));