Skip to content

Instantly share code, notes, and snippets.

@queckezz
Created May 26, 2013 18:31
Show Gist options
  • Save queckezz/5653628 to your computer and use it in GitHub Desktop.
Save queckezz/5653628 to your computer and use it in GitHub Desktop.
use 'arg' and if its a falsey value, it uses 'def'
function pick( arg, def ) {
return ( typeof arg == 'undefined' ? def : arg )
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment