InterviewSolution
Saved Bookmarks
| 1. |
When rendering the page for the first time in Angular, which page is called first? |
|
Answer» In Angular, the main.ts is the entry point of the application, which runs first when you RENDER a page in Angular. It compiles the application with JIT and bootstraps the Angular application. In Angular 2, you can BOOTSTRAP multiple environments to import a module SPECIFIC to the environment during which angular looks for a specific module to run first. |
|