Create a BankApp using Console application It should be able to do the following:
- Collect name as account Name
- Assign account number
- Make a deposit
- Set transaction PIN
- Using pin for transaction:
- If the user enters the wrong PIN 3 times lock the account (end program)
- Validate PIN to:
- Make a transfer
- Make a withdrawal
- View account details (including balance)
- Using a list implement view transaction history
- Install Node.js if not already installed: Node.js
- Clone the repo
- Navigate to the project directory
- Install dependencies using
npm install - Run the application using
node index.js - Follow the on-screen prompts to interact with the BankApp. You can perform various operations like creating accounts, deposits, transfers, withdrawals, viewing account details, and transaction history.