You-dont-know-js: On chapter 5 page 50. Example code don't show me nothing

Created on 24 Jul 2016  路  4Comments  路  Source: getify/You-Dont-Know-JS

function foo() {
var a = 2;
function baz() {
console.log( a ); // 2
}
bar( baz );
}
function bar(fn) {
fn(); // look ma, I saw closure!
}

I don't know what is happening!!!, I have tried on JS Bin, jsfiddle and on Chrome .
Sorry, I'm new on JS and don't figure out what is happening

All 4 comments

The code snippet prints "2". The inner function baz closes over the variable a that is inside foo. That baz function reference is passed to the function bar which is a different scope. However, the a is still accessible by baz because of closure.

Thanks a lot, your argument is right but I don't get it run on my PC, I'm doing something wrong for sure.

Just need to call the "foo();" function, hahaha....

Ah... sorry for the confusion.

Was this page helpful?
0 / 5 - 0 ratings