Thuộc tính hàm tạo Boolean trả về hàm tạo đã tạo nguyên mẫu Boolean -
Sau đây là mã cho thuộc tính hàm tạo Boolean của JavaScript -
Ví dụ
<!DOCTYPE html> <html> <head> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } </style> </head> <body> <h1>JavaScript Boolean constructor Property</h1> <p class="sample"></p> <button class="btn">CLICK HERE</button> <h3>Click on the above button to get the boolean constructor function</h3> <script> var bool = true; document.querySelector(".btn").addEventListener("click", () => { document.querySelector(".sample").innerHTML = "The boolean constructor function: <br>" + bool.constructor; }); </script> </body> </html>
Đầu ra
Khi nhấp vào nút “BẤM VÀO ĐÂY” -