Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
A closure is a first-class function that refers to (closes over) variables from the scope in which it was defined. If the closure still exists after its defining scope ends, the variables it closes over will continue to exist as well.
1
vote
2answers
145 views
Javascript closure when the function takes a callback value
I've been trying to understand Javascript closures, and thought I was onto something. I have managed to successfully return an iterated integer (generated by a for loop) within my inner function.
...
0
votes
1answer
80 views
Why self-invoking closure to load Javascript FB SDK?
From: http://developers.facebook.com/docs/guides/web/
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
...