Skip to content

Instantly share code, notes, and snippets.

@djD-REK
Created September 19, 2019 06:15
Show Gist options
  • Save djD-REK/92b85afbb72c6dd5dc8d68cebf9baca2 to your computer and use it in GitHub Desktop.
Save djD-REK/92b85afbb72c6dd5dc8d68cebf9baca2 to your computer and use it in GitHub Desktop.
let [profit, costs] = [120000, 100000] // It was a good month
// Employee bonus structure: $1000 if >10% profit, $100 if not
let employeeBonus = (profit/costs > 1.10) ? 1000 : 100
console.log("$"+employeeBonus) // $1000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment