Skip to content

Instantly share code, notes, and snippets.

@krzysztofczernek
Created October 4, 2018 17:29
Show Gist options
  • Save krzysztofczernek/6269b548fc9f23da8133e91d7d6c6731 to your computer and use it in GitHub Desktop.
Save krzysztofczernek/6269b548fc9f23da8133e91d7d6c6731 to your computer and use it in GitHub Desktop.
function calculatePrice (unitPrice, noOfUnits, couponValue = 0) {
return unitPrice * noOfUnits - couponValue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment