0 votes
in Angular by
What is Angular compiler?

1 Answer

0 votes
by

The Angular compiler is used to convert the application code into JavaScript code. It reads the template markup, combines it with the corresponding component class code, and emits component factories which creates JavaScript representation of the component along with elements of @Component metadata.

...