Skip to content

Instantly share code, notes, and snippets.

@fedemp
Created September 30, 2011 23:33
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 fedemp/1255334 to your computer and use it in GitHub Desktop.
Save fedemp/1255334 to your computer and use it in GitHub Desktop.
Some questions on Javascript
var b = undefined = 5;
var a;
if (b) a = 10;
console.log(a);
var a = {a: 1, b: 5, c: 10};
var b;
console.log( b in a );
var a = +"5"+ +"10";
console.log(a);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment