Project - 4
Project 4: Expense Tracker
Build a simple expense tracker where you can add income and expenses, see the total balance, and view a list of all transactions.
👀 Show Example Solution
<input type="text" id="description" placeholder="Description"> <input type="number" id="amount" placeholder="Amount"> <button onclick="addTransaction()">Add</button> <p class="balance">Balance: $0</p> <ul id="transactions"></ul> <script> // Logic for adding income/expense with localStorage </script>
