behoben müßiges Charakter

This commit is contained in:
David 2022-11-17 11:51:18 +01:00
parent fd05f8cc59
commit a08d1c4744

View File

@ -53,7 +53,7 @@ checkExpenses();
const logBigExpenses = function (bigLimit) {
let output = "";
for (const entry of budget)
output += entry.value <= -bigLimit ? $entry.description.slice(-2) : "";
output += entry.value <= -bigLimit ? entry.description.slice(-2) : "";
output = output.slice(0, -2);
console.log(output);
};