Loading

摘要: 一个简单的 JavaScript 类示例 class Person { constructor(name, age) { this.name = name this.age = age } speak() { console.log(this) } } const p = new Person('C 阅读全文
posted @ 2021-01-07 16:24 Callback子都 阅读(1035) 评论(0) 推荐(0) 编辑