03/08/20 03:42
Arrayの謎
function ClassA(){}
ClassA.prototype = new ClassA();
ClassA.prototype.hage = new Array();
ClassA.prototype.moe = "abc";
a = new ClassA();
a.hage.push(0);
a.hage.push(1);
a.hage.push(2);
a.moe = "a";
b = new ClassA();
b.hage.push(0);
b.hage.push(1);
b.hage.push(2);
b.moe = "b";