Skip to content

Instantly share code, notes, and snippets.

@kikar
Created March 10, 2016 23:53
Show Gist options
  • Save kikar/d8508b5cc5ebbde941c0 to your computer and use it in GitHub Desktop.
Save kikar/d8508b5cc5ebbde941c0 to your computer and use it in GitHub Desktop.
function foo(a) {
this.a = a;
}
var bar = new foo( 2 );
console.log( bar.a ); // 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment