Skip to content

Instantly share code, notes, and snippets.

@fakiolinho
Created May 12, 2013 00:01
Show Gist options
  • Save fakiolinho/5561858 to your computer and use it in GitHub Desktop.
Save fakiolinho/5561858 to your computer and use it in GitHub Desktop.
JS: Single Custom Object
//Create a single custom object
var object = {
attribute1: 'value1',
attribute2: 'value2',
method1: function() {
return this.attribute1 + ' ' + this.attribute2;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment