How -Infinity is converted to Number in JavaScript?


Use the Number() method in JavaScript to convert to Number. You can try to run the following code to learn how to convert -Infinity Number in JavaScript.

Example

Live Demo

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

Output

Convert -Infinity to Number
Number : -Infinity

Monica Mona
Monica Mona

Student of life, and a lifelong learner

Updated on: 23-May-2020

134 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements