$('*').find(selector) is technically correct but

$('*').find(selector) is technically correct but


Out of curiosity, I did some test on jQuery.com
On my console, I ran
$("* div")
Object length=25
$("div")
Object length=25
$("*").find('div');
Object length=116
The last one is technically correct but wouldn't it be more useful to
make the array of elements unique?