Check if a JavaScript Function is Defined



To check if a JavaScript function is defined or not, checks it with “undefined”.

Example

You can try to run the following example to check for a function is defined or not in JavaScript −

<!DOCTYPE html>
<html>
   <body>
      <script>
         function display() {
            alert("Demo Text!");
         }

         if ( typeof(display) === 'undefined') {
            document.write('undefined');
         } else {
            document.write("Function is defined");
         }
      </script>
   </body>
</html>
Updated on: 2020-06-23T06:48:39+05:30

288 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements