AngularConcepts
AngularConcepts copied to clipboard
Key Angular Concepts using Latest Angular version 5
Bumps [@angular/core](https://github.com/angular/angular/tree/HEAD/packages/core) from 6.1.4 to 10.2.5. Changelog Sourced from @angular/core's changelog. 10.2.5 (2021-04-14) Bug Fixes compiler-cli: show a more specific error for Ivy NgModules (#41534) (#41598) (f630f33) core: fix possible...
When the component loads for the first time it happens fine. ``` fetchData(){ return this.af.list('/path/path/',{ query: { orderByChild: 'createdAt' } }).map(arr => {return arr.reverse();}); } ``` The data from fetch...
``` const index = ((this.page-1)*5)+i; const updated = this.comments[index]; updated.comment = comment; this.service.editComment(updated.$key,updated); console.log(this.el.nativeElement.querySelectorAll(".su")); ```