Skip to content

Instantly share code, notes, and snippets.

@sunnyy02
Created December 7, 2021 09:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sunnyy02/ec06b548d5e7137d2c853fab5587a256 to your computer and use it in GitHub Desktop.
Save sunnyy02/ec06b548d5e7137d2c853fab5587a256 to your computer and use it in GitHub Desktop.
const applyFixDiscount= (x) => x - 20
const applyVipOffer = (x) => x / 2
const getDiscountedPrice = (x) => applyVipOffer(applyFixDiscount(x))
console.log(getDiscountedPrice(100)) // 40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment