Retrieve one of the elements matched by the Cheerio object, at the ith position.
i
Element to retrieve.
The element at the ith position.
$('li').get(0).tagName;//=> li Copy
$('li').get(0).tagName;//=> li
https://api.jquery.com/get/
Retrieve all elements matched by the Cheerio object, as an array.
All elements matched by the Cheerio object.
$('li').get().length;//=> 3 Copy
$('li').get().length;//=> 3
Retrieve one of the elements matched by the Cheerio object, at the
ith position.