I have an angularjs2 app that receives a list of jsons from my firebase service. I want to access and display the first element of the list.
Here is what I have tried
<h1>{{(chapters | async)?[0].title}}</h1>
which gives me a Template parse error.
How do I access the first element of an async array?