Home  >  Article  >  Web Front-end  >  What happens when converting 1 to a boolean in JavaScript?

What happens when converting 1 to a boolean in JavaScript?

PHPz
PHPzforward
2023-08-31 12:41:05617browse

What happens when converting 1 to a boolean in JavaScript?

You can try running the following code to learn how to convert 1 to a boolean in JavaScript -

Example

Live Demo

<!DOCTYPE html>
<html>
   <body>
      <p>Convert 1 to Boolean</p>
      <script>
         var myVal = 1;
         document.write("Boolean: " + Boolean(myVal));
      </script>
   </body>
</html>

The above is the detailed content of What happens when converting 1 to a boolean in JavaScript?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete