Run ❯
Get your
own
website
Result Size:
625 x 565
×
Change Orientation
Save Code
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <body> <h2>JavaScript Boolean</h2> <p>The valueOf() method returns the primitive value of a boolean:</p> <p id="demo"></p> <script> let bool = false; document.getElementById("demo").innerHTML = bool.valueOf(); </script> </body> </html>