笔试 2022年3月2日 一些计算机基础题,涉及数据结构、操作系统、计算机网络。一道JS编程题,实现继承 // 题目给出父类 function Parent(name, age) { this.name = name this.age = age function sayName() { return this.name } } // 解答(用的组合继承) function Child(name, age) { Parent.call(this, name, age) } Child.prototype = new Parent() n...