Skip to content

Instantly share code, notes, and snippets.

@melnik88
Created March 18, 2014 11:08
Show Gist options
  • Save melnik88/9618006 to your computer and use it in GitHub Desktop.
Save melnik88/9618006 to your computer and use it in GitHub Desktop.
create single class
var someClass = function(){
function init(){
console.log('someClass is created')
}
this.init = init;
}
var myclock = new someClass();
myclock.init();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment