Closures and Scope Flashcards
1
Q
What can cause memory leaks in closures?
A
Closures can cause memory leaks if they retain references to large objects unnecessarily.
This occurs when an inner function holds onto variables that are no longer needed.
2
Q
How can you avoid unintended closure behavior in loops?
A
Use let instead of var or wrap the iteration inside an IIFE (Immediately Invoked Function Expression).
Using let creates a new binding for each iteration.
3
Q
What is the output of the following code when counter1 and counter2 are called?
A
1, 2, 1
counter1 and counter2 have separate closures, each with its own count variable.