Displaying a concise overview of dates is the goal here (a simplified example provided).
someArray$: Observable<Date[]> = of(
new Date(2019, 11, 1),
new Date(2019, 11, 2),
new Date(2019, 11, 3));
Following that, a backend call retrieves data in this format:
anotherArray$: Observable<MyClass[]> = of(
{date: new Date(2019, 11, 1), active: true},
{date: new Date(2019, 11, 2), active: false},
{date: new Date(2019, 11, 3), active: false});
With someArray$ already being displayed using *ngFor in the template, I'm contemplating a way to combine them seamlessly without subscribing and utilize the boolean value from the second array for visualizing activity.