Disclaimer: I am new to Angular :-)
I am experimenting with intertwining Angular and a weather api and I am stumped on how to approach displaying nested data in the JSON payload (Namely, the items under the Historical object). I am able to call and display top level items in the payload.
Here's where I am at:
{{ this.weatherData?.current.precip }} <-- this shows the current precipitation successfully
{{ this.weatherData?.historical.maxtemp }} <--- this doesn't display anything
API documentation: https://weatherstack.com/documentation
Many thanks for your coaching and patience that comes with a curious newbie.
