Skip to content

Instantly share code, notes, and snippets.

/example.js Secret

Created May 31, 2015 14:05
Show Gist options
  • Save anonymous/438cba6b18b26dbdaab1 to your computer and use it in GitHub Desktop.
Save anonymous/438cba6b18b26dbdaab1 to your computer and use it in GitHub Desktop.
function getDrink(type) {
return ({
coke: function() { return 'Coke'; },
pepsi: function() { return 'Pepsi'; },
lemonade: function() { return 'Lemonade'; }
}[type] || function() {
return 'Default item';
})();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment