Вы могли бы также рассмотреть возможность использования настройки класса следующим образом:
class Car {
constructor(brand, model, color, year) {
this._brand = brand
this._model = model
this._color = color
this._year = year
}
get brand() {
return this._brand
}
}
class Cars {
constructor(cars = []) {
this._cars = cars
}
addCars(cars) {
cars.forEach(c => this._cars.push(c))
}
getBrands() {
return this._cars.map(x => x.brand)
}
}
let cars = new Cars([
new Car('BMW', 'z4', 'white', 2010),
new Car('Mercedes', 'cl', 'black', 2011),
new Car('Ford', 'mustang', 'red', 2015),
new Car('Audi', 's3', 'yellow', 2013),
new Car('Fiat', 'fat boy', 'purple', 2020)
])
console.log(cars.getBrands())
Где вы можете использовать геттеры / сеттеры ES6 и т. Д.
Вот еще один способ сделать это с вашей установкой:
function Cars(brand, model, color, year) {
this.brand = brand;
this.model = model;
this.color = color;
this.year = year;
this.allCars = [];
}
var bmw = new Cars('BMW', 'z4', 'white', 2010),
benz = new Cars('Mercedes', 'cl', 'black', 2011),
ford = new Cars('Ford', 'mustang', 'red', 2015),
audi = new Cars('Audi', 's3', 'yellow', 2013),
fiat = new Cars('Fiat', 'fat boy', 'purple', 2020);
Cars.prototype.addCars = function(data) {
if (Array.isArray(data)) {
for (let i = 0; i < data.length; i++) {
this.allCars.push(data[i]);
}
return data.map(x => x.brand)
} else {
this.allCars.push(data);
return data.brand
}
}
console.log(benz.addCars([bmw, audi, fiat]));
console.log(benz.addCars([ford]));