Easy
One of the best practices in Angular is to unsubscribe from Observables when we no longer need them. For that, do we have to do
Author: Emmanuel DemeyStatus: PublishedQuestion passed 2934 times
Edit
5
Community EvaluationsNo one has reviewed this question yet, be the first!
5
In an Angular directive, which decorator should we use to listen for an event of the element that this same directive is placed on?5
Why is the following snippet not validated?
```jsx
<h1>Products Lists</h1>
<ul>
<li *ngFor="let p of products" *ngIf="p.stock > 0">
{{ p.name }}
</li>
</ul>
```
Answer: We cannot have ngFor and ngIf on the same element8
Write a pipe to format a date according to a certain pattern.14
Which of these methods, allowing to create Providers, does not exist in Angular?15
Which provider is recommended for DOM manipulation in Angular?6
How to make a child component communicate with its parent component in Angular?28
Create a form with two mandatory fields in Angular