Simple question, cannot seem to find an answer... (this will be a quick 'point' for someone)
I'm looking to have a condition in an Angular 5 ngIf be "less than" some variable.
<div class="row" *ngIf="Subject < 4" >
<div class="row" *ngIf="Subject <= 4" >
this syntax bombs because "<" - how can I do this? (without having to write function)?