Convert Infinity 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
Updated on: 2020-05-23T09:30:39+05:30

204 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements