Skip to content

Instantly share code, notes, and snippets.

@tsongas
Created February 9, 2016 20:55
Show Gist options
  • Save tsongas/7e0f00d5ac2e50610287 to your computer and use it in GitHub Desktop.
Save tsongas/7e0f00d5ac2e50610287 to your computer and use it in GitHub Desktop.
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