Os protótipos não podem falar com variáveis locais no construtor
var counter = function () { var count = 0; this.increment = function () { count++; } this.get = function() { return count; }}//now counter.prototype.decrement = function () { count–; …
Continuar lendo