“Słowo kluczowe klasy ES6” Kod odpowiedzi

Słowo kluczowe klasy ES6

class Rectangle {
  constructor(height, width) {
    this.height = height;
    this.width = width;
  }
  // Getter
  get area() {
    return this.calcArea();
  }
  // Method
  calcArea() {
    return this.height * this.width;
  }
}

const square = new Rectangle(10, 10);

console.log(square.area); // 100
HimansaE

Słowo kluczowe klasy ES6

class Polygon {
  constructor(...sides) {
    this.sides = sides;
  }
  // Method
  *getSides() {
    for(const side of this.sides){
      yield side;
    }
  }
}

const pentagon = new Polygon(1,2,3,4,5);

console.log([...pentagon.getSides()]); // [1,2,3,4,5]
Obnoxious Osprey

Odpowiedzi podobne do “Słowo kluczowe klasy ES6”

Pytania podobne do “Słowo kluczowe klasy ES6”

Więcej pokrewnych odpowiedzi na “Słowo kluczowe klasy ES6” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu