拼多多前端笔试题(一)
2. 请在ES5下实现一个继承,Child继承Parent。要求:Child要继承Parent的所有方法和属性。function Parent(age) {this.age = age;this.sayAge=function(){console.log(this.age);}}Parent.prototype.sayParent = function() {alert("this