Skip to content

Instantly share code, notes, and snippets.

@QuocCao-dev
Created September 25, 2022 08:12
Show Gist options
  • Save QuocCao-dev/c2d1efd9fd702e14ad245b2afe2c4686 to your computer and use it in GitHub Desktop.
Save QuocCao-dev/c2d1efd9fd702e14ad245b2afe2c4686 to your computer and use it in GitHub Desktop.
const calculatePrice = ({ total, tax = 0.1, tip = 0.05 }) =>
total + total * tax + total * tip;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment