Question: What is the correct way to check how many paragraphs exist on a page using jQuery?

  1. `$('p').count()`
  2. `$('p').length`
  3. `$('*').find('p')`
  4. `$('p').length()`

Answer: The correct answer of the above question is Option B:`$('p').length`