How you can be master in Angular
Rule of Thumb => Learn Angular from the Angular Team.
All major concept has been listed in short in the below url. Checkout any concept quickly and start learning on it.
Angular Bible: https://angular.io/guide/glossary#service
On the left navigation, you will get the tutorials of all individual topic. Else, you can search them from the top right corner.
export class PeekABooComponent extends PeekABooDirective implements
OnChanges, OnInit,
DoCheck,
AfterContentInit,
AfterContentChecked,
AfterViewInit,
AfterViewChecked,
OnDestroy {
import {
AfterContentChecked,
AfterContentInit,
AfterViewChecked,
AfterViewInit,
Component,
DoCheck,
Input,
OnChanges,
OnDestroy,
OnInit,
SimpleChanges
} from '@angular/core';
Comments
Post a Comment