Posts

Showing posts from November, 2021

Angular Interview

 Angular Start angular Step -1 - Call main.ts - function called -> platformBrowserDynamic().bootstrapModule(AppModule) -> bootstrapModule will call module appModule What is Metadata? tell what type of classes e.g @NgModule, @component What is decorator? @NgModule, @component is decorator  metadata privided through decorator what is root module ? setup execution environment look for app component create instance of component and insert in element Parts of module? - declaration - imports - export - providers - bootstrap What is Directive  whatever angular code we writes in html known as dirctives     directives are used to modify dom or html element. directives are three types (SAC) 1. structural - change structure of dom ,  ngFor, ngIf 2. Attribute - change behaviour of dom 3. Component Directive - when u creates any component, rwsuable component - Built-in attribute directives NgClass—adds and removes a set o...