Iterates over a cheerio object, executing a function for each matched
element. When the callback is fired, the function is fired in the context of
the DOM element, so this refers to the current element, which is equivalent
to the function parameter element. To break out of the each loop early,
return with false.
Iterates over a cheerio object, executing a function for each matched element. When the callback is fired, the function is fired in the context of the DOM element, so
thisrefers to the current element, which is equivalent to the function parameterelement. To break out of theeachloop early, return withfalse.