export class Car {
// Tu código aquí 👈
brand;
model;
year;
mileage;
state = false;
constructor(_brand, _model, _year, _mileage) {
this.brand = _brand
this.model = _model
this.year = _year
this.mileage = _mileage
}
turnOn() {
this.state = true;
}
turnOff() {
this.state = false;
}
drive(km) {
if (!this.state) throw new Error("El auto está apagado")
this.mileage += km
}
}
¿Quieres ver más aportes, preguntas y respuestas de la comunidad?