请问if里的判断语句是什么意思呀?
function Singer(name ,age) {
this.name = name;
this.age = age;
if (typeof this.sing != 'function') { //这里是啥意思?
Singer.prototype.sing = function () {
console.log("大家好,我是"+this.name);
};
}
}
17
收起
正在回答 回答被采纳积分+1
2回答
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星