5.接口.js 255 B

1234567891011
  1. (function () {
  2. class Person2 {
  3. constructor(name, age, color) {
  4. this.name = name;
  5. this.age1 = age;
  6. this.color = color;
  7. }
  8. }
  9. let p3 = new Person2('图图', 3, '红');
  10. console.log(p3);
  11. })();