-
Notifications
You must be signed in to change notification settings - Fork 675
Expand file tree
/
Copy pathindex.js
More file actions
75 lines (62 loc) · 1.42 KB
/
index.js
File metadata and controls
75 lines (62 loc) · 1.42 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
72
73
74
75
// 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 totalExpenses = 0;
for (let i = 0; i < this.entries.length; i++) {
if (this.entries[i].type === "income") {
totalIncome += this.entries[i].amount;
} else if (this.entries[i].type === "expense") {
totalExpenses += this.entries[i].amount;
}
}
return totalIncome - totalExpenses;
}
getFormattedEntries() {
const formattedEntries = [];
this.entries.forEach(entry => {
formattedEntries.push(
`${entry.date} | ${entry.description} | ${entry.getFormattedAmount()}`
);
});
return formattedEntries;
}
}