Skip to content

Instantly share code, notes, and snippets.

@Swizec
Created January 15, 2013 19:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Swizec/4541212 to your computer and use it in GitHub Desktop.
Save Swizec/4541212 to your computer and use it in GitHub Desktop.
var v;
switch ( $(this).val() ) {
case 'tru':
v = true;
break;
case 'fls':
v = false;
break;
case 'null':
default:
v = null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment