Last active
December 28, 2018 15:53
-
-
Save Kelderic/56cd1d4fd302c31cc57ff1d8ec2bf96e to your computer and use it in GitHub Desktop.
Javascript Class Skeleton
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
(function(window) { | |
window.FooBarClass = (function() { | |
/***************************************/ | |
/************* INITIALIZE **************/ | |
/***************************************/ | |
var Class = function( params ) { | |
// DO SETUP STUFF HERE | |
}; | |
/***************************************/ | |
/********** PUBLIC FUNCTIONS ***********/ | |
/***************************************/ | |
Class.prototype.doPublicThings = function() { | |
// DO STUFF | |
}; | |
/***************************************/ | |
/********** PRIVATE FUNCTIONS **********/ | |
/***************************************/ | |
function doPrivateThings( variable ) { | |
// DO STUFF | |
} | |
return Class; | |
}()); | |
}(window)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment