Which element does the type variable contain?

The p elementThe h3 elementThe body element<html>
<body>
<h3>New York Times</h3>
<p id="subscription">Basic Subscription</p>
<script>
var type = document.getElementById("subscription");
</script>
</body>
</html>]]>