Skip to content

Instantly share code, notes, and snippets.

@othiym23
Forked from anonymous/bnb.js
Last active December 10, 2015 15:29
Show Gist options
  • Save othiym23/4454972 to your computer and use it in GitHub Desktop.
Save othiym23/4454972 to your computer and use it in GitHub Desktop.
function BadNewsBears() {
var a = 0;
Object.defineProperty(this, 'inc',
{get : function () { return a++; },
enumerable : true});
Object.defineProperty(this, 'wtf',
{get : function () {
var b = (this.inc, this.inc, this.inc);
return b;
},
enumerable : true});
}
var lol = new BadNewsBears();
lol.wtf // --> ?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment