-
Notifications
You must be signed in to change notification settings - Fork 676
Expand file tree
/
Copy pathindex.js
More file actions
71 lines (67 loc) · 1.44 KB
/
index.js
File metadata and controls
71 lines (67 loc) · 1.44 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
64
65
66
67
68
69
70
71
// 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.type = "expense";
this.paid = paid;
}
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 balance = 0;
for (let entry of this.entries) {
if (entry.type === "income") {
balance += entry.amount;
} else {
balance -= entry.amount;
}
}
return balance;
}
getFormattedEntries() {
const formatted = [];
this.entries.forEach((entry) => {
if (entry.type === "income") {
formatted.push(
`${entry.date} | ${entry.description} | ${entry.amount} €`
);
} else if (entry.type === "expense") {
formatted.push(
`${entry.date} | ${entry.description} | -${entry.amount} €`
);
}
});
return formatted;
}
}