Edit This Code:
<!DOCTYPE html>
<html>
<body>
<p>If you use NaN in a mathematical operation, the result can be a concatination:</p>

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

<script>
var x = NaN;
var y = "5";
document.getElementById("demo").innerHTML = x + y;
</script>

</body>
</html>


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