>>125
こんな感じ

function myCounterClass(init=0)
{
this.value = init;
this.count = function () {this.value++;};
}

var mycounter = new myCounterClass(10);

mycounter.count();
mycounter.count();
mycounter.count();

document.write(mycounter.value);