function C(){
this.a = 1;
return false;
}
console.log(typeof new C())
返回结果是object
想知道C是函数还是构造函数?return false应该怎么理解?
UYOU
相关分类