Callbacks & Callback Hell
What common asynchronous programming problem does this code illustrate?
getData(function(a) {
getMore(a, function(b) {
getMore(b, function(c) {
getMore(c, function(d) {
// Handle d
});
});
});
});