摘要: var user = function(name, age) { this.name = name; this.age = age; }; user.prototype.getName = function() { console.log(this.name); return this; }; us 阅读全文
posted @ 2020-06-14 18:24 文学少女 阅读(311) 评论(0) 推荐(0) 编辑