คุณสามารถลองเรียกใช้สิ่งต่อไปนี้เพื่อเรียนรู้วิธีแปลงบูลีนเป็นสตริงใน JavaScript -
ตัวอย่าง
<!DOCTYPE html> <html> <body> <p>Convert Boolean to String</p> <script> var myBool = false; document.write("<br>String : " + String(myBool)); </script> </body> </html>