Skip to content

Instantly share code, notes, and snippets.

/*
A quick sample of the module pattern from JavaScript Patterns
*/
var app = app || {};
app.module = (function(){
// private members
var prop = 0;