Sobes.tech
Back to tasks
Junior — Senior
48

Преобразование функции‑конструктора в класс ES6

Get help with live coding in real time with Sobes Copilot
Task condition

Перепишите заданный конструктор и прототипный метод, используя современный синтаксис классов JavaScript.

class Bike {
  constructor(model, color) {
    this.model = model;
    this.color = color;
  }

  getDetails() {
    return this.model + ' bike has' + this.color + ' color';
  }
}