Using Angular 7:
I'm using ngFor to bind an Array of objects to rows in a table. Immediately after pushing a new row I need to call another function which requires that new row having been rendered, but the rendering process is (i assume) asynchronous with my code, so the next function executes and cannot find the new row.
How do i wait for Angular to finish updating?