我在 JavaScript 中定义一个类
function Pen(parent){
this.color = "#0000ff";
this.stroke = 3;
this.oldPt;
this.oldMidPt;
this.isActive = false;
this.parent = parent; //app that owns this pen
this.points = [];
this.curShape;
console.log(this);
return(this);
}
在console.log 语句中,我得到的不仅仅是这个类,我得到了关于基本上所有其他事情的各种信息。这是为什么?