摘要: 1 function Person(name, age) { 2 this.name = name, 3 this.age = age, 4 this.run = function () { 5 console.log(this.name + "在敲代码!"); 6 } 7 } 8 9 Person 阅读全文
posted @ 2020-06-04 13:25 Mmonologue 阅读(177) 评论(0) 推荐(0)