Skip to content
Advertisement

Checks for defined data in component

Let’s say I have config-items for my component. If they are available they should be in the output – otherwise not.

JavaScript

The check for defined is pretty annoying if there are a lot of items.

Is there a way to do it better?

Advertisement

Answer

You can use the safe navigation operator (also known as optional chaining)

JavaScript

Another option is to create a wrapping ng-container and apply the *ngIf on it.

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement