Skip to content

Instantly share code, notes, and snippets.

@jiverson
Created June 5, 2014 18:47
Show Gist options
  • Save jiverson/1595637bfb6d5866a507 to your computer and use it in GitHub Desktop.
Save jiverson/1595637bfb6d5866a507 to your computer and use it in GitHub Desktop.
Javascript fun
var a = undefined;
var b = 1;
var c = a && b;
console.log(c);
// undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment