I (think) I have a dictionary data set with the keys being a date and the value being at least one array
private dateArray = {};
I am dynamically loading more arrays to the dictionary array so that I can show them as different sections on the component. The goal is something like this:
Date Joined: 9/1/17
Name: Mary, Age: 40
Name: John, Age: 20
Date Joined: 10/1/17
Name: Jeff, Age: 30
dateArray
ends up having the date as a string in the key and then the properties are added as multiple arrays of their specific properties.
{Fri Sept 1 2017: ([Name: Mary, Age: 40],[Name: John, Age: 20]),
Sun Oct 1 2017: [Name: Jeff, Age: 30]}
How do I access the data from the template side? I am using Angular 2. I tried the Mapping Object Keys section and did not have any luck getting anything to display. Is piping the best route in Angular 2?