Skip to content

Instantly share code, notes, and snippets.

@Reinoptland
Last active March 23, 2017 12:40
Show Gist options
  • Select an option

  • Save Reinoptland/acdb474fdb2243308e3bb322c01a469a to your computer and use it in GitHub Desktop.

Select an option

Save Reinoptland/acdb474fdb2243308e3bb322c01a469a to your computer and use it in GitHub Desktop.
giveTimeEstimate
function giveTimeEstimate(task, experience) {
let lookPro
if (experience.includes(task)) {
lookPro = true;
return timeEstimate(task);
}
lookPro = false;
throw new Error('I don\'t know how long this will take');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment