Skip to content

Instantly share code, notes, and snippets.

@jperrine
Created October 24, 2011 02:12
Show Gist options
  • Save jperrine/1308232 to your computer and use it in GitHub Desktop.
Save jperrine/1308232 to your computer and use it in GitHub Desktop.
note js
var Note = function (name) {
var someMethod = function() {};
return {
publicMethod: someMethod,
...
}
};
var note1 = new Note('whatever');
var note2 = new Note('something');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment