Skip to content

Instantly share code, notes, and snippets.

@jrolfs
Created August 27, 2014 21:40
Show Gist options
  • Save jrolfs/fb06e2aa95038530a9e9 to your computer and use it in GitHub Desktop.
Save jrolfs/fb06e2aa95038530a9e9 to your computer and use it in GitHub Desktop.
function switchMe(thing) {
switch(true) {
case _.isString(thing):
return 'string';
case _.isArray(thing):
return thing.join(' ');
case _.isObject(thing):
return 'O B J';
default:
return 'bro';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment