Skip to content

Instantly share code, notes, and snippets.

View mdarnall's full-sized avatar

Matt Darnall mdarnall

View GitHub Profile
@mdarnall
mdarnall / gist:807031
Created February 2, 2011 00:39
Object Creation Pattern
/*
A quick sample of the module pattern from JavaScript Patterns
*/
var app = app || {};
app.module = (function(){
// private members
var prop = 0;