Skip to content

Instantly share code, notes, and snippets.

@Tombarr
Created January 19, 2019 23:11
Show Gist options
  • Save Tombarr/cb438fe36687818ed23355a5c021009e to your computer and use it in GitHub Desktop.
Save Tombarr/cb438fe36687818ed23355a5c021009e to your computer and use it in GitHub Desktop.
Switch statement in Javascript
switch (new Date().getDay()) {
case 0:
return "Sunday";
case 1:
return "Monday";
default:
return "Some other day...";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment