Skip to content

Instantly share code, notes, and snippets.

@searls
Created October 15, 2011 19:44
Show Gist options
  • Save searls/1290051 to your computer and use it in GitHub Desktop.
Save searls/1290051 to your computer and use it in GitHub Desktop.
var Book = function(){
var self = {};
self.open = function(){
//public book openin'!
}
var turnPage = function(){
//private page turnin'!
};
return self;
};
var book1 = Book();
var book2 = Book();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment