摘要: 一、基础类 const Person = function (name, age) { this.name = name this.age = age } Person.prototype = { getName: function() { return this.name }, getAge: f 阅读全文
posted @ 2021-07-30 11:07 JerryDZ 阅读(35) 评论(0) 推荐(0)