function Person() {}
Person.prototype.population = 0;
Person.prototype.constructor = function(name) {
this.name = name;
console.log("Name: " + this.name);
console.log("Population: " + (++this.population) );
}
var p = new Person("Wex");
次のコードは機能していないようですが、論理的には健全に思えます。なぜこれは名前と人口を表示しないのですか?