Skip to content

Commit 8ebc0fc

Browse files
committed
Fix JS examples
1 parent 0dd5ce5 commit 8ebc0fc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

JavaScript/2-undo.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class Bank {
6565
const output = [];
6666
for (const command of this.commands) {
6767
output.push({
68-
operation: command.constructor.name,
68+
operation: command.constructor.name.toLowerCase(),
6969
account: command.account.name,
7070
amount: command.amount,
7171
});

JavaScript/3-anemic.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Bank {
2121
}
2222

2323
operation(account, amount) {
24-
const operation = amount < 0 ? 'Withdraw' : 'Income';
24+
const operation = amount < 0 ? 'withdraw' : 'income';
2525
const command = new AccountCommand(
2626
operation,
2727
account.name,

JavaScript/4-operations.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ bank.operation(account1, 1000);
7575
bank.operation(account1, -50);
7676
const account2 = new BankAccount('Antoninus Pius');
7777
bank.operation(account2, 500);
78-
bank.operation(account2, -10000); // -10000
78+
bank.operation(account2, -100); // -10000
7979
bank.operation(account2, 150);
8080
bank.showOperations();
8181
console.table([account1, account2]);

0 commit comments

Comments
 (0)