Skip to content

Instantly share code, notes, and snippets.

@basyusuf
Created March 3, 2021 23:23
Show Gist options
  • Save basyusuf/f67b208b0221fd62f6dd77b724b4e773 to your computer and use it in GitHub Desktop.
Save basyusuf/f67b208b0221fd62f6dd77b724b4e773 to your computer and use it in GitHub Desktop.
Business Logic Bank Example
let transferAmount = body.amount;
let currentBalance = user.getBalance();
if (transferAmount <= currentBalance) {
// Complete the transfer
} else {
// Unsuccessful transfer. Blocked
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment