The defaultSelected property of the HTMLOptionElement interface specifies the default selected state of the element. This property reflects the <option> element's selected attribute. The presence of the selected attribute sets the defaultSelected property to true.
A boolean.
const optionElement = document.getElementById("water");
console.log(optionElement.defaultSelected);