I have been searching all over the web and have not found a solution for my specific case. I need to filter a JSON result based on a start date and end date.
Currently, I am using Angular 7 and have come across the "dateRangeFilter" but it is just an example. My code looks like this:
<tr *ngFor="let caixa of result | dateRangeFilter: '08/03/2019' , '14/03/2019' ">
<td>{{caixa.tipo}}</td>
<td>{{caixa.data}}</td>
<td>{{caixa.hora}}</td>
<td>{{caixa.cliente}}</td>
<td>{{caixa.valor | currency:'BRL':symbol:'1.2-2'}}</td>
</tr>