Skip to content

Instantly share code, notes, and snippets.

@jamesfinley
Created April 30, 2009 00:07
Show Gist options
  • Select an option

  • Save jamesfinley/104152 to your computer and use it in GitHub Desktop.

Select an option

Save jamesfinley/104152 to your computer and use it in GitHub Desktop.
var obj = function () {
var secret = 'hello';
return {
set: function (value) {
secret = value;
},
get: function () {
return secret;
}
};
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment