I have a condition that I am unable to determine if "not":
*ngIf="searchResults['@odata.count'] !== null && searchResults['@odata.count'] >= 0"
Note, this does not work:
*ngIf="searchResults['@odata.count'] == null && searchResults['@odata.count']< 0"
that I want to write an ngIf "not". Similar to:
*ngIf="!(searchResults['@odata.count'] !== null && searchResults['@odata.count'] >= 0)"
Is there a way to do this solely working with the condition given?