Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acdff19 commit 20c7951Copy full SHA for 20c7951
03_basics/IIFE.js
@@ -0,0 +1,17 @@
1
+//Immediately Invoked Function Expression --IIFE
2
+
3
+// ()()
4
+(function chai() {
5
+ //named IIFE
6
+ let name = "waseem akram ";
7
+ console.log(name);
8
+})();
9
10
+((best) => {
11
+ console.log("hello everyone");
12
+ console.log(`${best}, this is my favourite social media `);
13
+})("instagram");
14
15
16
+//-------------Important----------
17
+// used for avoding the global variable pollutioning ....
0 commit comments