Skip to content
Open
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 exercises/global-scope-and-shadowing/problem.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ nesting, or long functions.
# Your Mission

Starting with your solution from the previous lesson, assign a value to the global variable
`quux` inside `foo()` (don't use `var` or `let`). Create a shadow variable in of `quux`
`quux` inside `foo()` (don't use `var` or `let`). Create a shadow variable of `quux`
inside `zip()`. The value in the global variable `quux` has to be different than the
value of `quux` inside `zip()`.

Expand Down