1
2
var gCounter = 23
3
4
function Base() {
5
this.counter = gCounter
6
gCounter *= 2
7
}
8
9
Base.prototype.fiddle = function() { return this.counter; }
10
Base.prototype.faddle = function() { return this.counter; }
11
12