Created
January 22, 2025 19:59
-
-
Save rodriguezcommaj/350a5ccb09ebc3e4120779c397fc43e3 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
| function calculateTotal(price, quantity) { | |
| let total = price * quantity; | |
| if (price <= 0 || quantity <= 0) { | |
| return "Invalid input"; | |
| } | |
| return total.toFixed(2); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment