Skip to content

Instantly share code, notes, and snippets.

@jadehopepunk
Last active December 20, 2017 02:30
Show Gist options
  • Save jadehopepunk/4e78782acfae58589152923efc7892a0 to your computer and use it in GitHub Desktop.
Save jadehopepunk/4e78782acfae58589152923efc7892a0 to your computer and use it in GitHub Desktop.
function isValidOrder(order, customer) {
const salesTaxPercentage = 0.15
return
order.units > 1 &&
order.state == 'complete' &&
order.price * (1.0 + salesTaxPercentage) < customer.availableBalance
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment