Question: What is tricky about jQuery's nth- filters (:nth-child, :nth-of-type, etc.) relative to other filters?

  1. Referring to lists of items, they are 1-indexed (like CSS), not 0-indexed (like JavaScript).
  2. They don't return the jQuery object, and cannot be chained.
  3. They can return the wrong items if the DOM was recently manipulated.
  4. They are not part of CSS, so they don't get the performance benefits of passing through the `document.querySelectorAll`.

Answer: The correct answer of the above question is Option A:Referring to lists of items, they are 1-indexed (like CSS), not 0-indexed (like JavaScript).