Which describes how jQuery makes working with the DOM faster?
jQuery code to perform DOM manipulation is shorter and easier to write, but does not make DOM operations faster.
jQuery uses a virtual DOM that batches updates, making inserts and deletes faster.
jQuery avoids using the DOM at all.
jQuery optimizes the DOM in a background thread, making updates faster.