Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 2.js #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Update 2.js #11

wants to merge 1 commit into from

Conversation

Nishant9771
Copy link

The issue in these code is that the variable i is not being captured correctly inside the 'then' function due to JavaScript’s function scope and the way closures work. By the time the 'then' function is called, the loop has already completed, and i is equal to 1000.

To fix this issues, i use an IIFE (Immediately Invoked Function Expression) to create a new scope for each iteration of the loop, capturing the current value of i.

The issue in these code is that the variable i is not being captured correctly inside the 'then' function due to JavaScript’s function scope and the way closures work. By the time the 'then' function is called, the loop has already completed, and i is equal to 1000.

To fix this issues, i use an IIFE (Immediately Invoked Function Expression) to create a new scope for each iteration of the loop, capturing the current value of i.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant