We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75c4ef5 commit 3e15351Copy full SHA for 3e15351
js_functions/iife.js
@@ -0,0 +1,10 @@
1
+// Immediately Invoked Function Expression (IIFE)
2
+
3
+(function biscuit() {
4
+ console.log("DB CONNECTED");
5
+})();
6
7
+// IIFE with arrow function
8
+((name) => {
9
+ console.log(`DB CONNECTED TWO ${name}`);
10
+})("henry");
0 commit comments