-
Notifications
You must be signed in to change notification settings - Fork 675
Expand file tree
/
Copy pathindex.js
More file actions
63 lines (53 loc) · 1.11 KB
/
index.js
File metadata and controls
63 lines (53 loc) · 1.11 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// Entry
class Entry {
constructor(date, amount, description) {
this.date = date;
this.amount = amount;
this.description = description;
}
getFormattedAmount() {
return `${this.amount} €`;
}
}
// Income
class Income extends Entry {
constructor(date, amount, description) {
super(date, amount, description);
this.type = "income";
}
}
// Expense
class Expense extends Entry {
constructor(date, amount, description, paid) {
super(date, amount, description);
this.paid = paid;
this.type = "expense";
}
getFormattedAmount() {
return `-${this.amount} €`;
}
}
// Budget
class Budget {
constructor() {
this.entries = [];
}
addEntry(entry) {
this.entries.push(entry);
}
getCurrentBalance() {
if (this.entries.length === 0) {
return 0;
}
let totalIncome = 0;
let totalExpense = 0;
for (const entry of this.entries) {
if (entry.type === "income") {
totalIncome += entry.amount;
} else if (entry.type === "expense") {
totalExpense += entry.amount;
}
}
return totalIncome - totalExpense;
}
}