摘要: function Person (name, age) { this.name = name; this.age = age; this.say = function() { console.log(1); } } Person.prototype.say = function() { consol 阅读全文
posted @ 2022-09-07 15:58 lknmn 阅读(29) 评论(0) 推荐(0)