Skip to content

Instantly share code, notes, and snippets.

@ahmadajmi
Created March 30, 2011 08:55
Show Gist options
  • Save ahmadajmi/894084 to your computer and use it in GitHub Desktop.
Save ahmadajmi/894084 to your computer and use it in GitHub Desktop.
var foo = 22;
var t = foo && 23;
t; // return 23
var t = foo || 23;
t; // return 22
var bar = true;
!bar; // return false
!!bar // return true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment