<html>
<body>
<h1>JavaScript Booleans</h1>
<p>Display the Boolean value of false:</p>
<p id="demo"></p>
<script>
let x = false;
document.getElementById("demo").innerHTML = Boolean(x);
</script>
</body>
<!-- /js/tryit.asp?filename=tryjs_boolean_false Thu, 06 Feb 2025 18:15:26 GMT -->
</html>