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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly