Hello!
Is with x==8 answer authomatically “set” to bool?
<!DOCTYPE html>
<html>
<body>
<p>Given that x=5, return the value of the comparison x==8.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction()
{
var x=99;
document.getElementById("demo").innerHTML=x==8;
}
</script>
</body>
</html>