how to fetch the array value with increment in ts component code example
Example: array in typescript
const count = [...Array(5)];
count.map((_) => console.log('hi'));
const count = [...Array(5)];
count.map((_) => console.log('hi'));