Build an Array Dynamically

PHOTO EMBED

Thu Jul 29 2021 21:16:41 GMT+0000 (Coordinated Universal Time)

Saved by @mmerkley #html

const exampleItems = [...Array(150).keys()].map(i => ({ id: (i+1), name: 'Item ' + (i+1) }));
content_copyCOPY