Skip to content

Instantly share code, notes, and snippets.

@cyphunk
Created December 6, 2017 17:07
Show Gist options
  • Save cyphunk/5d69dd8259a3555edd6c4b6a5ed530c9 to your computer and use it in GitHub Desktop.
Save cyphunk/5d69dd8259a3555edd6c4b6a5ed530c9 to your computer and use it in GitHub Desktop.
bloody js
var Worker = function (name) {
this.name = name;
this.mcount = 0;
this.mcounter = function() {
++this.mcount;
console.log("mcount",this.name,this.mcount)
}
this.mmcount = 0;
this.mmcounter = function() {
this.constructor.prototype.mmcount+=1;
console.log("mmcount",this.name,this.constructor.prototype.mmcount)
}
}
Worker.prototype = {
pcount: 0,
pcounter: function() { this.pcount+=1;console.log("pcount",this.name, this.pcount) },
ppcount: 0,
ppcounter: function() { this.constructor.prototype.ppcount+=1;console.log("ppcount",this.name, Worker.constructor.prototype.ppcount) },
}
w1 = new Worker("w1")
w2 = new Worker("w2")
w1.mcounter()
w1.mcounter()
w2.mcounter()
w1.pcounter()
w1.pcounter()
w2.pcounter()
w1.mmcounter()
w1.mmcounter()
w2.mmcounter()
w1.ppcounter()
w1.ppcounter()
w2.ppcounter()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment