JavaScript에서 문자열을 부울로 변환하는 코드는 다음과 같습니다. -
예시
<!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>사용
출력
입력 필드에 'true' 문자열이 아닌 다른 것을 쓰고 버튼 클릭 시 -