Skip to content

Instantly share code, notes, and snippets.

@jackfranklin
Last active December 15, 2015 04:39
Show Gist options
  • Save jackfranklin/5203503 to your computer and use it in GitHub Desktop.
Save jackfranklin/5203503 to your computer and use it in GitHub Desktop.
var Basket = function() {
this.count = 5;
};
Basket.prototype.count = 1;
var x = new Basket();
console.log(x.count); // 1 or 5? (and why?)
// and
var Basket = function() {};
Basket.prototype.count = 1;
var x = new Basket();
x.count = 5;
console.log(x.count); // 1 or 5? (and why?)
@chinchang
Copy link

haha. I was wondering how come I wrote the second O/P wrong :P

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment