Skip to content

Instantly share code, notes, and snippets.

@MeanEYE
Last active January 10, 2017 15:31
Show Gist options
  • Save MeanEYE/588bd30d7c583da4eb68a9291d15b7f4 to your computer and use it in GitHub Desktop.
Save MeanEYE/588bd30d7c583da4eb68a9291d15b7f4 to your computer and use it in GitHub Desktop.
Generic simple JavaScript object.
function Class(parameter) {
var self = this;
self.some_variable = parameter;
/**
* Complete object initialization.
*/
self._init = function() {
};
// finalize object
self._init();
}
var temp = new Class('Test string');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment