Skip to content

Instantly share code, notes, and snippets.

@takaheraw
Created February 2, 2013 11:57
Show Gist options
  • Save takaheraw/4696997 to your computer and use it in GitHub Desktop.
Save takaheraw/4696997 to your computer and use it in GitHub Desktop.
function Universe(){
var instance = this;
this.start_time = 0;
this.bang = "Big";
Universe = function(){
return instance;
};
}
var uni = new Universe();
var uni2 = new Universe();
uni === uni2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment