0
<!DOCTYPE html>
<html>
<body>
 <h2>JavaScript Booleans</h2>
 <p>Display the value of (10 > 9):</p>
 <p id="workingcode"></p>
 <script>
document.getElementById("workingcode").innerHTML = (10 > 9);
</script>
 </body>
</html>

Output:
JavaScript Booleans
Display the value of (10 > 9):

true

JavaScript Booleans Function use
Expert Asked question July 14, 2023