>>145

function myCounterClass(init=0)
{
this.value = init;
this.count = function () {this.value++; document.getElementById("demo").innerHTML = this.value;};
}

var mycounter = new myCounterClass(10);


これで
"demo"ってIDの領域作って、

それと、
button を作ってそのonclick = "mycounter.count()"  でやってみてくれ

HTMLタグ貼ろうとすると書けない