-
-
Save MaizerGomes/c13befa024d477c2b17a3c02edc05548 to your computer and use it in GitHub Desktop.
JavaScript ATM (part 1) Lab Solution
This file contains 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
<script> | |
var balance = 100.0; //set initial balance. | |
function get_balance() { | |
alert('Your current balance is: '+balance); | |
atm(); | |
} | |
function make_deposit() { | |
var deposit = parseFloat(prompt('How much would you like to deposit?')); | |
if (isNaN(deposit) || deposit === '') { | |
alert('Error: please enter a number!'); | |
make_deposit(); | |
} else { | |
balance += deposit; | |
get_balance(); | |
} | |
} | |
function make_withdrawal() { | |
var withdrawal = parseFloat(prompt('How much would you like to withdrawal?')); | |
if (isNaN(withdrawal) || withdrawal === '') { | |
alert('Error: please enter a number!'); | |
make_withdrawal(); | |
} else { | |
balance -= withdrawal; | |
get_balance(); | |
} | |
} | |
function error() { | |
alert('Error: accepted numbers are 1 through 4.'); | |
atm(); | |
} | |
function exit() { | |
var confirm_leave = confirm('You have selected exit.'); | |
if (confirm_leave) { | |
window.close(); | |
} else { | |
atm(); | |
} | |
} | |
function atm() { | |
var choice = parseInt(prompt('Select a choice 1.) Balance 2.) Deposit 3.) Withdrawal 4.) Exit')); //prompt user for choice. | |
if (choice === 1) { | |
get_balance(); | |
} else if (choice === 2) { | |
make_deposit(); | |
} else if (choice === 3) { | |
make_withdrawal(); | |
} else if (choice === 4) { | |
exit(); | |
} else { | |
error(); | |
} | |
} | |
atm(); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment