Zack Saadioui
8/27/2024
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
json
{
    "income": [
        { "source": "Job", "amount": 5000}, 
        { "source": "Side hustle", "amount": 1000}
    ],
    "expenses": [
        { "category": "Rent", "amount": 1500 },
        { "category": "Utilities", "amount": 300 },
        { "category": "Groceries", "amount": 400 }
    ],
    "budgetGoals": {
        "total": 2000,
        "categories": { "Savings": 400, "Investments": 200 }
    }
}1
2
3
4
5
6
html
<form>
    <input type="text" placeholder="Source of Income"> 
    <input type="number" placeholder="Amount"> 
    <button type="submit">Add Income</button>
</form>Copyright © Arsturn 2025