Understand JavaScript Callback Functions and Use Them

http://javascriptissexy.com/understand-javascript-callback-functions-and-use-them/

A callback function, also known as a higher-order function, is a function that is passed to another function (let’s call this other function “otherFunction”) as a parameter, and the callback function is called (or executed) inside the otherFunction.

Leave a comment