जावास्क्रिप्ट में सेल्फ-इनवोकिंग फंक्शन को इंस्टेंट इनवोक्ड फंक्शन एक्सप्रेशन (IIFE) के रूप में जाना जाता है। तत्काल इनवोक्ड फंक्शन एक्सप्रेशन (आईआईएफई) एक जावास्क्रिप्ट फ़ंक्शन है जो परिभाषित होने के तुरंत बाद निष्पादित होता है इसलिए आईआईएफई को मैन्युअल रूप से आमंत्रित करने की कोई आवश्यकता नहीं है।
जावास्क्रिप्ट में सेल्फ-इनवोकिंग फंक्शन (IIFE) के लिए कोड निम्नलिखित है -
उदाहरण
<!DOCTYPE html> <html lang="javascript:void(0);en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .sample { font-size: 18px; font-weight: 500; } </style> </head> <body> <h1>JavaScript Immediately Invoked Function Expressions (IIFE)</h1> <div class="sample"></div> <script> let sampleEle = document.querySelector(".sample"); (function () { sampleEle.innerHTML = "This code is invoked immediately as soon as it is defined"; })(); </script> </body> </html>
आउटपुट
उपरोक्त कोड निम्न आउटपुट उत्पन्न करेगा -