세 가지 방법이 있습니다. 값을 부울로 변환 . 이 3가지 방법에서 2가지 방법에는 부울 이 포함됩니다. 키워드가 있는 반면 다른 방법은 기호 !! 사용. 자세히 논의해 보겠습니다.
부울 키워드 사용
예시
다음 예에서 부울 키워드가 구현되어 결과가 출력에 표시된 대로 표시됩니다.
<html> <body> <script> const isTrue = 'Golden State Warriors'; document.write(new Boolean(isTrue)); document.write("</br>"); document.write(Boolean(isTrue)); </script> </body> </html>
출력
true true
!! 사용
예시
다음 예에서는 부울 키워드 대신 기호(!!) 값을 부울로 변환하는 데 사용됩니다.
<html> <body> <script> const isTrue = 'Golden State Warriors'; document.write(!!isTrue); </script> </body> </html>
출력
true true