Question: Which choice is an example of statement chaining?

  1. `var $p = $('p'); console.log($p.length);`
  2. `$('p').find('a').children('li');`
  3. `$('p > a > li');`
  4. `$('p'); $('a'); $('li');`

Answer: The correct answer of the above question is Option B:`$('p').find('a').children('li');`