Skip to content

Instantly share code, notes, and snippets.

View joshball's full-sized avatar

Joshua Ball joshball

View GitHub Profile
@joshball
joshball / Person.this.js
Created October 10, 2014 14:54
different.js code
function Person(name){
console.log('\nPerson.this: %s', name);
this.name = name;
this.cakesEaten = 0;
};
Person.prototype.eatCake = function(){
console.log('%s: om nom nom nom', this.name);
this.cakesEaten++;
};