InterviewSolution
Saved Bookmarks
| 1. |
Is angular 4 services which traverse the DOM looking for attributes? |
|
Answer» Yes, ANGULAR 4 services is a compiler which transverse the DOM looking for attributes. The process of compilation is partitioned into two phases namely- Compile- means to traverse the DOM and GATHER all directives such as ng-repeat. Link- means to produce a LIVE view by COMBINING the directives with a scope. |
|