Skip to content

Instantly share code, notes, and snippets.

@stefanjudis
Created September 19, 2019 20:49
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 stefanjudis/375c35311cf5c80281c8eb47ff14e43d to your computer and use it in GitHub Desktop.
Save stefanjudis/375c35311cf5c80281c8eb47ff14e43d to your computer and use it in GitHub Desktop.
const actionType = "LUNCH_ORDERED"
switch(actionType) {
case "LUNCH_ORDERED":
console.log("lunch")
case "DINNER_ORDERED":
console.log("dinner")
break
default:
console.log(":/")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment