<html>
<body>
<h1>JavaScript Operators</h1>
<h2>The typeof Operator</h2>
<p>The value and the data type of a variable that has not been assigned a value is undefined.</p>
<p id="demo"></p>
<script>
let car;
document.getElementById("demo").innerHTML =
"<p>The value of car is " + car +
"<p>The typeof car is " + typeof car;
</script>
</body>
</html>