Convert Boolean to Integer in JavaScript



Yes, it is possible to convert Boolean to Integer in JavaScript, using the Ternary Operator.

Example

You can try to run the following code to convert Boolean to Integer −

Live Demo

<html>
   <head>
      <title>JavaScript Boolean</title>
   </head>

   <body>
      <script>
         var answer = true;
         document.write(answer);

         var pass_marks = answer ? 90 : 40;
         document.write("<br>Passing Marks: "+pass_marks);
      </script>
   </body>
</html>
Updated on: 2020-06-15T07:11:35+05:30

372 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements