Skip to content

Instantly share code, notes, and snippets.

@madbence
Created May 1, 2014 15:58
Show Gist options
  • Select an option

  • Save madbence/ce0098e44605ce8eacfc to your computer and use it in GitHub Desktop.

Select an option

Save madbence/ce0098e44605ce8eacfc to your computer and use it in GitHub Desktop.
function Foo(a,b,c) {
this.a=a;
this.b=b;
this.c=c;
}
function a1() {
return this.b();
};
//...
function b1() {};
//...
var instance = new Foo(a1, b2, c3);
instance.a();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment