Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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