Skip to content

Instantly share code, notes, and snippets.

@aaronpowell
Created July 11, 2011 01:02
Show Gist options
  • Select an option

  • Save aaronpowell/1075161 to your computer and use it in GitHub Desktop.

Select an option

Save aaronpowell/1075161 to your computer and use it in GitHub Desktop.
Q1 - Truth about False
var a = 1,
b = 'hello',
c = 0,
d = true,
e;
e = a && b && c && d;
console.log(e);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment