Created
February 9, 2016 20:55
-
-
Save tsongas/7e0f00d5ac2e50610287 to your computer and use it in GitHub Desktop.
This file contains 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
var Abc = function(aProperty,bProperty){ | |
this.aProperty = aProperty; | |
this.bProperty = bProperty; | |
this.init = function(){ | |
// Do things here. | |
} | |
this.init(); | |
}; | |
var currentAbc = new Abc(obj,obj); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment