EDIT: based on the the answer, it seems that AngularJS is not faster than jQuery since it also uses a version of jQuery (jqLite).
A friend told me that jQuery can be slow because it needs to parse the entire HTML page for each request to be able to find the DOM objects and manipulate them. For a big page, it would get a bad performance.
However, AngularJS could be faster with big HTML pages because it "compiles" the HTML and has a faster access to DOM objects.
Is it true? Could you please give a trustful link that confirms that?
If this not true, please, give me an explanation regarding how jQuery and AngularJS are different regarding accessing DOM objects.
I've also seached by performance benchmarks and I've only found this one: link.
If Angular is not faster than jQuery, why the test is wrong?