mcrypted / bank-tech-test

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bank-tech-test

This is a potential solution to the bank tech test.

Requirements and acceptance criteria can be found in bank_tech_test.md

How to use:

cd bank-tech-test
node
const BankAccount = require("./BankAccount.js");
const myBankAccount = new BankAccount();
myBankAccount.deposit(1000);
myBankAccount.deposit(2000);
myBankAccount.withdraw(500);
myBankAccount.printStatement();

Expected output:

bank-tech-test

About


Languages

Language:JavaScript 100.0%