Persistence with localStorage
Keep the ledger after refresh
Browser memory disappears when a page reloads. localStorage gives a small local-first application durable storage on the same device. Arrays must be serialized to JSON when saved and parsed when loaded.
Parsing can fail if stored data is damaged, so recovery is part of the feature—not an afterthought.
التعليمات
Create loadTransactions with localStorage.getItem and JSON.parse.
تلميح: Read STORAGE_KEY, then parse only when raw exists.
Recover safely with try/catch and return an empty array on failure.
Create saveTransactions(items) with JSON.stringify.
Save after every push and render once on startup.
الكود الخاص بك
صف ما تريد بناءه في هذه الخطوة وسأكتب الكود — ثم انقر «تطبيق» لإدراجه في محرّرك. هذه الخطوة: Create loadTransactions with localStorage.getItem and JSON.parse.