The required property of the HTMLSelectElement interface specifies that the user must select an option with a non-empty string value before submitting a form. It reflects the <select> element's required attribute.
A boolean.
const selectElement = document.getElementById("fruits");
console.log(selectElement.required);<select>HTMLSelectElement.validity:required pseudo-class