Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124


Structure directives manipulate the DOM elements. These directives have a * sign before the directive. For example, *ngIf and *ngFor.
Example:
<div *ngFor="let user of users">{{user.name}}</div>
Special directives in Angular are called Components since this type of directive has a template or template URLs. In effect, it is a component directive that shows something in DOM.
Attribute directive are used to change the look and behavior of the DOM elements. For example ngClass directive, ngStyle directive, etc.
Quiz App In Angular. Client Side PDF Generation In Angular With jsPDF.