Created
May 1, 2014 15:58
-
-
Save madbence/ce0098e44605ce8eacfc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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