Skip to content

Instantly share code, notes, and snippets.

Created January 4, 2013 18:52
Show Gist options
  • Save anonymous/4454928 to your computer and use it in GitHub Desktop.
Save anonymous/4454928 to your computer and use it in GitHub Desktop.
function BadNewsBears() {
var a = 0;
Object.defineProperty(this,
'inc',
{
get : function () { return a++; },
enumerable : true
});
}
BadNewsBears.prototype.wtf = function () {
var b = (this.inc, this.inc, this.inc);
return b;
}
var lol = new BadNewsBears();
lol.wtf() // --> ?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment