I use for arrays : myArray.0 which works fine. But when it's an object myObject.0 doesn'twork.
Here is an example of the object I want.
myObject : {
    book1 : {
        title:"One",
        Author:"Someone",
        Date:"19/06/13",
    },
    book2 : {
        title:"Two",
        Author:"Someone else",
        Date:"12/02/10",
    },
    book3 : {
        title:"Three",
        Author:"Another someone",
        Date:"03/09/03",
    }
}
I want to do something like :
`<h2>{{myObject.0}}</h2>` 
and I expect
<h2>book1</h2>
Any idea of how I can do it ?
Thanks
 
     
     
    