Home >Web Front-end >HTML Tutorial >What happens when 0 is converted to Number in JavaScript?

What happens when 0 is converted to Number in JavaScript?

WBOY
WBOYforward
2023-08-28 12:05:06662browse

What happens when 0 is converted to Number in JavaScript?

Convert it to a number using the Number() method in JavaScript. You can try running the following code to learn how to convert 0 to a number in JavaScript −

Example

Live Demonstration

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

The above is the detailed content of What happens when 0 is converted to Number 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

Related articles

See more