February 2019
Intermediate to advanced
446 pages
10h 55m
English
There are three types of directives in Angular:
You can also create your own directives using the following command:
ng generate directive <directive name>For example:ng generate directive otrsBold
This creates the following class:
import { Directive } from '@angular/core';@Directive({ selector: '[appOtrsBold]' ...Read now
Unlock full access