class// 创建一个类
class Person {
name = "Eric" // 类的属性
age = 18
hobby () { // 类的方法
console.log('ma
2021-07-25