InterviewSolution
Saved Bookmarks
| 1. |
What is JIT and AOT in angular 4? |
|
Answer» JIT During compilation of code in Angular 4, Just-in-TIME (JIT) compilation (also KNOWN as dynamic translation or run-time compilations) is used to execute computer code involving compilation during the run time of a program, precisely, prior to execution. AOTIn Angular 4, Ahead-of-Time(AOT) compilation is used to convert your code during the BUILD time before it LOADS on the browser. This creates a scope for faster rendering in your browser. |
|