Check if a Variable Exists in JavaScript



To check if a variable exists in JavaScript, you need to check it against null as in the following code. Here, we’re checking the existence of variable myVar −

<html>
   <body>
      <script>
         var myVar = 20;
         if(myVar !== undefined && myVar !== null) {
            document.write("Variable exists");
         }
      </script>
   </body>
</html>
Updated on: 2020-06-13T08:28:18+05:30

433 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements