function FunctionClass() { this.name = "test";
}
FunctionClass.prototype = { setVal: function() { console.log("xxx");
}
}console.log(FunctionClass.prototype.constructor === FunctionClass)会有什么问题?可否举几个例子,先谢过大家。
添加回答
举报
0/150
提交
取消