What are these two? I've yet to find a good explanation of either.
feedback
|
|
Closures have already been well handled in Stackoverflow here is just a selection:- How does a javascript closure work? Callbacks are a simpler concept. A callback is basically where a function accepts another function as a parameter. At some point during execution the called function will execute the function passed as a parameter, this is a callback. Quite often the callback actually happens as an asynchronous event, in which case the called function may return without having executed the callback, that may happen later. Here is a common (browser based) example:-
Here the function Closures and callbacks Quite often the reason that closures get created (either incidentally, accidentally or deliberately) is the need to create a callback. For example:-
(Please read some of the linked posts to grasp closures) A closure is created containing in part the | |||||||||
feedback
|
|
| |||
|
feedback
|
|
Take a look at the information in http://en.wikipedia.org/wiki/Closure_%28computer_science%29 and http://en.wikipedia.org/wiki/Callback_%28computer_science%29. There are Javascript examples in both texts. | |||||||
feedback
|