Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 1-js/06-advanced-functions/03-closure/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Let's formulate two questions for the seed, and then study internal mechanics pi

Such situations are common in both browser and server-side development. A function may be scheduled to execute later than it is created: on user action or after a network request etc.

So, the the question is: does it pick up latest changes?
So, the question is: does it pick up latest changes?


2. The function `makeWorker` makes another function and returns it. That new function can be called from somewhere else. Will it have access to outer variables from its creation place or the invocation place or maybe both?
Expand Down