Skip to content

Instantly share code, notes, and snippets.

@usagi
Created April 13, 2012 07:07
Show Gist options
  • Select an option

  • Save usagi/2374679 to your computer and use it in GitHub Desktop.

Select an option

Save usagi/2374679 to your computer and use it in GitHub Desktop.
var c = function(){ this.x = 123; };
var a = new c();
console.log(a.x);
var b = new c;
console.log(b.x);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment