We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8de6348 commit 6db0e7eCopy full SHA for 6db0e7e
1 file changed
iife.js
@@ -0,0 +1,13 @@
1
+//* Immediately Invoked function expression (IIFE)
2
+
3
+// => are js function defined as expression that are immedietely invoked and executed as soon as they are defined
4
5
+//?? => variables declared within an IIFE are not accessable externally
6
7
+//** */ => IIFE is used for Imedite code execution and the resulting data privacy
8
9
+//! Example
10
11
+(function () {
12
+ console.log("Hare Krishan");
13
+})();
0 commit comments