function a (){
this.testing = 'testing';
}
function b (){
}
b.prototype = new a();
console.log(b.testing);
控制台显示未定义,而不是“测试”。我做错了什么?
答案 0 :(得分:10)
你还没有制作'b'的实例。
var bInstance = new b();
console.log(bInstance.testing);
换句话说,原型的属性只出现在b
类型的对象上,而不出现在b()
构造函数本身上。