JSFiddle - React, Tailwind, and code Playground

HTML

<div class="person">
  <div class="name">Jason</div>
</div>

<div class="person">
</div>

JavaScript

$(".person").filter(function(){
    return !$(this).find(".name").length;
}).html('Ya Man!');