Skip to content

Instantly share code, notes, and snippets.

@nadavspi
Last active January 18, 2018 21:25
Show Gist options
  • Save nadavspi/71d50c0ad2807bbec4a3 to your computer and use it in GitHub Desktop.
Save nadavspi/71d50c0ad2807bbec4a3 to your computer and use it in GitHub Desktop.
function LOE(tasks) {
return tasks.map(task => effortUnits(task)).reduce((a, b) => a + b);
}
function effortUnits() {
return [6, 8, 40][Math.floor(Math.random() * 3)];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment