Skip to content

Instantly share code, notes, and snippets.

@rodriguezcommaj
Created January 22, 2025 19:59
Show Gist options
  • Select an option

  • Save rodriguezcommaj/350a5ccb09ebc3e4120779c397fc43e3 to your computer and use it in GitHub Desktop.

Select an option

Save rodriguezcommaj/350a5ccb09ebc3e4120779c397fc43e3 to your computer and use it in GitHub Desktop.
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