Home
<!DOCTYPE html> <html> <body> <h1>Demo: JavaScript Boolean</h1> <script> var bool = new Boolean(false); if(bool){ alert('This will be executed.'); } </script> </body> </html>
Result: