Skip to content

Instantly share code, notes, and snippets.

@Kamilnaja
Created August 5, 2023 16:58
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 Kamilnaja/a1fb29202f100fd1651f7e931980e2e6 to your computer and use it in GitHub Desktop.
Save Kamilnaja/a1fb29202f100fd1651f7e931980e2e6 to your computer and use it in GitHub Desktop.
Simplify me
function dayOfTheWeek(num) {
switch (num) {
case 1:
return 'Monday';
case 2:
return 'Tuesday';
case 3:
return 'Wednesday';
case 4:
return 'Thursday';
case 5:
return 'Friday';
case 6:
return 'Saturday';
case 7:
return 'Sunday';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment