-
-
Save grapho/f53dbf4d8b1c9b3fc1e6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const MESSAGES = { | |
400: 'Bad syntax', | |
404: 'Could not find it', | |
500: 'You broke the server' | |
}; | |
function blah(statusCode) { | |
const msg = MESSAGES[statusCode] || 'idk lol'; | |
doSomethingWith(msg); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment