6.接口.js 283 B

123456789101112
  1. (function () {
  2. // 使用接口
  3. class Main {
  4. constructor(name, color, price) {
  5. this.name = name;
  6. this.color = color;
  7. this.price = price;
  8. }
  9. }
  10. let news = new Main('牡丹', '红色', 100);
  11. console.log(news);
  12. })();