Skip to content

Instantly share code, notes, and snippets.

@greyhwndz
Forked from poteto/use-pojos-not-switch.js
Created September 25, 2015 01:53
Show Gist options
  • Save greyhwndz/bb64bfc2406ba260799a to your computer and use it in GitHub Desktop.
Save greyhwndz/bb64bfc2406ba260799a to your computer and use it in GitHub Desktop.
const MESSAGES = {
400(foo) {
// stuff
},
404(foo) {
// stuff
},
500(foo) {
// stuff
}
};
function blah(statusCode, foo) {
return MESSAGES[statusCode](foo) || '¯\\_(ツ)_/¯';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment