In my code I have something like
this.users = firebase.database.list("/users");
which I can access in the HTML Code like:
<tbody *ngFor="let user of users | async" >
<tr >
<td>
{{user._name}}
</td>
</tr>
which works great. But how I can I access this the _name variable for example in the native JS code? I would always get errors that the variable does not exist.