Skip to content

Instantly share code, notes, and snippets.

@zbigniewTomczak
Created February 19, 2013 13:46
Show Gist options
  • Save zbigniewTomczak/4986037 to your computer and use it in GitHub Desktop.
Save zbigniewTomczak/4986037 to your computer and use it in GitHub Desktop.
var myObject = {
value: 0,
increment: function (inc) {
this.value += typeof inc === 'number' ? inc : 1;
}
};
myObject.increment( );
console.log(myObject.value);
myObject.increment(2);
console.log(myObject.value);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment