2021年11月17日
摘要: function People(name){ this.name = name; } People.prototype.showName = function(){ console.log(this.name); } function Student(){ } Student.prototype = 阅读全文
posted @ 2021-11-17 17:27 闲鱼仔 阅读(24) 评论(0) 推荐(0)