Учитывая следующий класс, как я могу перечислить его свойства, то есть получить выходные данные, такие как [station1, station2, station3...]
?
Я могу только видеть, как перечислить значения свойств, т.е. [null, null, null]
.
class stationGuide {
station1: any;
station2: any;
station3: any;
constructor(){
this.station1 = null;
this.station2 = null;
this.station3 = null;
}
}