Home >Web Front-end >HTML Tutorial >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 −
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!