拼多多前端笔试题(一)

2. 请在ES5下实现一个继承,Child继承Parent。要求:Child要继承Parent的全部方法和属性。 function Parent(age) { this.age = age; this.sayAge=function() { console.log(this.age); } } Parent.prototype.sayParent = function() { alert("thi
相关文章
相关标签/搜索