I'm relatively new to Angular and would like to understand what the following syntax means.
<div *ngFor="let day of week; index as i;" [ngStyle]="{'height.px': day | arrLength : arrLength : 'height' : i}">
//do something
</div>
Is it a pipe inside a style binding? why are there 3 colons after the pipe?