(function () { class Person2 { constructor(name, age, color) { this.name = name; this.age1 = age; this.color = color; } } let p3 = new Person2('图图', 3, '红'); console.log(p3); })();