Created
September 19, 2019 06:15
-
-
Save djD-REK/92b85afbb72c6dd5dc8d68cebf9baca2 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
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