JSFiddle - React, Tailwind, and code Playground

HTML

<select size="5" id="foobar">
   <option value="">foo</option>
    <option value="bar">bar</option>
</select>

JavaScript

$('#foobar option:nth-child(1)').prop('selected',true);