Multiple parameters selection

Multiple parameters selection

Selecting elements using multiple parameters like here:
  1. $('descendant', 'ancestor').text();
seems to be way more popular than css-like syntax:
  1. $('ancestor descendant').text();
Do those two differ in performance, or is it just about being intuitive to particular people?