Opposite of has()?

Opposite of has()?

How to manupulate elements that has not some elements?

For example, I need to take all divs that don’t have images:

<div><img/></div>
<div></div> ← I need to take this div
<div><img/></div>

If I needed divs with images, I would use $('div').has('img'), but what is opposite?