From 34f1ff059c2218cb8f029e26ad396b0aa14bd0be Mon Sep 17 00:00:00 2001 From: Adithya R Pai <46337104+arp55@users.noreply.github.com> Date: Tue, 5 Mar 2024 14:19:33 +0530 Subject: [PATCH] TDZ question removed --- src/questions/javascript-questions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/questions/javascript-questions.md b/src/questions/javascript-questions.md index 4ab2375..794a757 100644 --- a/src/questions/javascript-questions.md +++ b/src/questions/javascript-questions.md @@ -39,7 +39,7 @@ permalink: /questions/javascript-questions/index.html * Explain the difference between synchronous and asynchronous functions. * What is event loop? * What is the difference between call stack and task queue? -* What are the differences between variables created using `let`, `var` or `const`? What is temporal dead zone? +* What are the differences between variables created using `let`, `var` or `const`? * What are the differences between ES6 class and ES5 function constructors? * Can you offer a use case for the new arrow `=>` function syntax? How does this new syntax differ from other functions? * What advantage is there for using the arrow syntax for a method in a constructor?