function A(){}
function B(){}
var C = new B();
document.write(A.prototype); //Object
document.write(B.prototype); //Object
document.write(C.prototype); //undefined
可以理解为实例对象没有prototype静态属性吗
添加回答
举报
0/150
提交
取消