Skip to content

Instantly share code, notes, and snippets.

@atomjar
Created November 14, 2016 17:42
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 atomjar/ff389154d773af819157dd2bf6ae3559 to your computer and use it in GitHub Desktop.
Save atomjar/ff389154d773af819157dd2bf6ae3559 to your computer and use it in GitHub Desktop.
function weekendFinder (day) {
if (day === "Saturday" || day === "Sunday") {
return "We have to learn on our own :sadpanda:"
} else {
return "We get to go to school!"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment