जावास्क्रिप्ट में एक स्ट्रिंग को बूलियन में बदलने के लिए, कोड इस प्रकार है -
उदाहरण
<!DOCTYPE html> <html> <head> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } </style> </head> <body> <h1>Converting string to boolean</h1> <button class="Btn">CLICK HERE</button> <input class="str" type="text" /> <p class="sample"></p> <h3>Click the above button to convert the string to boolean value</h3> <script> let sampleEle = document.querySelector(".sample"); let inputEle = document.querySelector(".str"); document.querySelector(".Btn").addEventListener("click", () => { sampleEle.innerHTML += "Using == " + (inputEle.value == "true") + "<br>"; sampleEle.innerHTML += "Using === " + (inputEle.value === "true") + "<br>"; }); </script> </body> </html>
आउटपुट
स्ट्रिंग 'ट्रू' के अलावा इनपुट फील्ड में कुछ लिखने और बटन पर क्लिक करने पर -