-
-
Save QuocCao-dev/c2d1efd9fd702e14ad245b2afe2c4686 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| 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