codex-lv4-may-2025

Level Navigation: 1 2 3 (4ℹ️) (5ℹ️) 6 7 8 9 10 11 12 13 14⚡ 15⚡ (16ℹ️) 17 18 19 20 21 22 23 24 25 26⚡ 27⚡ 28⚡ 29 30 31 32 33 34 35 36 37 38 39⚡ 40⚡

Level 18: Seed In-Memory Data

Show Me: seed in-memory data array

const itemsStorage = [
  { id: 1, title: 'Notebook', price: 4.99, tags: ['stationery', 'paper'] },
  { id: 2, title: 'Mechanical Pencil', price: 2.49, tags: ['stationery'] }
];

console.log('Seeded items:', itemsStorage);
export default itemsStorage;