You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
IIFE Stands for (Immediately Invoked Function Expression). It's a function that executes immediately after it's defined, without needing to be called later.
4
+
*/
5
+
6
+
// Syntax
7
+
(function(){
8
+
console.log("I run immediately!");
9
+
})();
10
+
11
+
// Example
12
+
(function(){
13
+
constmessage="Hello from IIFE!";
14
+
console.log(message);
15
+
})();
16
+
// console.log(message); // ❌ Error: message is not defined
0 commit comments