This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //create empty array of bank accounts | |
| let bankAccounts = [] | |
| // function to create a new account | |
| const addAccount = function( name, amount ) { | |
| // create new account object | |
| let newAccount = { | |
| accountName: name, | |
| balance: amount |