Skip to main content

Posts

Showing posts with the label Angular 7 Ivy rendering engine

What Is Ivy rendering engine in Angular 7?

Ivy Rendering Engine -  The Ivy rendering engine is a new backwards-compatible Angular renderer main focused on the following. 1.               Speed Improvements 2.               Size Reduction 3.               Increased Flexibility The template functions for creating dynamically views are no longer nested functions inside each other. Now we use for loops that are nested inside other loops. Stayed In formed - Angular 7 Interview Questions Example: function AppComponent ( rf : RenderFlags , ctx : AppComponent ) { function ulTemplateFun ( rf1 : RenderFlags , ctx0 : any ) { function liTemplateFun ( rf1 : RenderFlags , ctx1 : any ) {...}   } } No longer create multiple functions instances for loops that are nested inside other loops. Example: ...