EDIT: based on the answer, it seems that AngularJS is not faster than jQuery, since it also uses the jQuery version (jqLite).
A friend told me that jQuery can be slow because it needs to parse the entire HTML page to query each in order to be able to find and manipulate DOM objects. For a large page, this will lead to poor performance.
However, AngularJS can be faster with large HTML pages because it "compiles" HTML and has faster access to DOM objects.
It's true? Could you provide a trusting link confirming this?
If this is not the case, please give me an explanation regarding how jQuery and AngularJS differ in terms of access to DOM objects.
I also used performance tests, and I found only one thing: link .
If Angular is not faster than jQuery, why is the test incorrect?
source share