-
Notifications
You must be signed in to change notification settings - Fork 142
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
Unable to complete Closures exercise #33
Comments
Hey @ryoboua , I assume this is for exercise 4? I believe you need to carry over the
|
It's always failed for me.
@NolanChan, your solution doesn't get passed too. |
you need to keep the function foo() {
var bar
function zip() {
var quux
}
} note that this weird thing also work lol function foo() {
var bar = function zip() {
var quux
}
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
My code is:
function foo(){
var bar;
function zip() {
bar = true;
}
return zip;
}
It fails with:
The text was updated successfully, but these errors were encountered: