जावास्क्रिप्ट फ़ंक्शन परिभाषित है या नहीं यह जांचने के लिए, इसे "अपरिभाषित" के साथ जांचें।
उदाहरण
जावास्क्रिप्ट में फ़ंक्शन परिभाषित है या नहीं, यह जांचने के लिए आप निम्न उदाहरण को चलाने का प्रयास कर सकते हैं -
<!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>