From f9f77a1b80fe1107fce942e46ae432b0571e5c85 Mon Sep 17 00:00:00 2001 From: VAMSI DEVALLA Date: Sat, 30 Oct 2021 04:21:39 -0400 Subject: [PATCH] Highlighting opening braces for IIFEs --- 1-js/06-advanced-functions/04-var/article.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/1-js/06-advanced-functions/04-var/article.md b/1-js/06-advanced-functions/04-var/article.md index cade0147..1579afb6 100644 --- a/1-js/06-advanced-functions/04-var/article.md +++ b/1-js/06-advanced-functions/04-var/article.md @@ -256,11 +256,11 @@ There exist other ways besides parentheses to tell JavaScript that we mean a Fun ```js run // Ways to create IIFE -(function() { +*!*(*/!*function() { alert("Parentheses around the function"); }*!*)*/!*(); -(function() { +*!*(*/!*function() { alert("Parentheses around the whole thing"); }()*!*)*/!*;