Skip to content

Instantly share code, notes, and snippets.

@VictorMedeiros
Created August 2, 2016 17:49
Show Gist options
  • Save VictorMedeiros/b62630b0665fab55e943b8384a65aa7c to your computer and use it in GitHub Desktop.
Save VictorMedeiros/b62630b0665fab55e943b8384a65aa7c to your computer and use it in GitHub Desktop.
function MyCat(name) {
this.catName = name;
}
MyCat.prototype.sayCatName = function() {
console.log(this === cat); // => true
return this.catName;
};
var cat = new MyCat('Mew');
cat.sayCatName(); // => 'Mew'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment