1
Answer

return line means

Hazel Mahmud

Hazel Mahmud

8y
309
1
$('div.grid').filter(function () {
var lis = $(this).find('#menu');
return lis.length === lis.filter(':empty').length;
}).hide();
 
can someone explain to me, what does the return  line means?..TQ
Answers (1)