InterviewSolution
Saved Bookmarks
| 1. |
What is the core difference between AngularJS compilation and JavaScript frameworks? |
|
Answer» Most of the Javascript FRAMEWORKS parse the HTML template as a stream and return the result as a string. The resulting string gets dumped into the DOM and can be retrieved using INNERHTML(). AngularJS WORKS DIRECTLY on HTML DOM rather than strings. It uses two-way data BINDING to sync the data. |
|