Counter.prototype = { value: 0, increment: function() { this.value++; this.updateValue(); }, decrement: function() { this.value--; this.updateValue(); }, updateValue: function() { this._element.firstChild.innerHTML = this.value; } };