Home
<!DOCTYPE html> <html> <body> <h1>Demo: JavaScript Boolean Object</h1> <script> var bool = new Boolean(true); alert(bool); // true </script> </body> </html>
Result: