You can try to run the following to learn how to convert Boolean to String in JavaScript −
Example
<!DOCTYPE html>
<html>
<body>
<p>Convert Boolean to String</p>
<script>
var myBool = false;
document.write("<br>String : " + String(myBool));
</script>
</body>
</html>