Skip to content

Instantly share code, notes, and snippets.

@stevez
Created November 7, 2011 02:05
Show Gist options
  • Select an option

  • Save stevez/1344027 to your computer and use it in GitHub Desktop.

Select an option

Save stevez/1344027 to your computer and use it in GitHub Desktop.
var myObject = {
value: 0,
increment: function() {
this.value +=1;
return this.value;
}
}
myObject.increment(); // => 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment