array string in typescript code example
Example 1: typescript array of strings
type IArrayOfStrings = Array<string>
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: type script array
let list: number[] = [1, 2, 3];
Example 4: array in typescript
const count = [...Array(5)];
count.map((_) => console.log('hi'));