Question: Which choice is an example of statement chaining?
- `var $p = $('p'); console.log($p.length);`
- `$('p').find('a').children('li');`
- `$('p > a > li');`
- `$('p'); $('a'); $('li');`
Answer: The correct answer of the above question is Option B:`$('p').find('a').children('li');`