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.
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!