Edit This Code:
<!DOCTYPE html>
<html>
<body>

<p>The typeof NaN is:</p>

<p id="demo"></p>

<script>
document.getElementById("demo").innerHTML = typeof NaN;
</script>

</body>
</html>




Result:
Try it Yourself - © w3schools.com
Privacy Policy