Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h1>The Element Object</h1>
<h2>The firstElementChild Property</h2>
<select id="mySelect" size="4">
  <option>Audi</option>
  <option>BMW</option>
  <option>Saab</option>
  <option>Volvo</option>
  </select>
<br><br>
<p>The text of the first child element of the select element is:</p>
<p id="demo"></p>
<script>
let text = document.getElementById("mySelect").firstElementChild.text;
document.getElementById("demo").innerHTML = text;
</script>
</body>
</html>