Which choice is an example of statement chaining?
$('p'); $('a'); $('li');
$('p > a > li');
$('p').find('a').children('li');
var $p = $('p'); console.log($p.length);