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