Home >Web Front-end >HTML Tutorial >In JavaScript, how to convert -Infinity to a boolean?

In JavaScript, how to convert -Infinity to a boolean?

PHPz
PHPzforward
2023-09-01 14:05:07806browse

In JavaScript, how to convert -Infinity to a boolean?

Convert it to a Boolean value using the Boolean() method in JavaScript. You can try running the following code to learn how to convert -Infinity to a boolean in JavaScript.

Example

Live Demonstration

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

The above is the detailed content of In JavaScript, how to convert -Infinity to a boolean?. 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