InterviewSolution
Saved Bookmarks
| 1. |
What do you understand by callback hell? |
|
Answer» async_A(function(){ async_B(function(){ async_C(function(){ async_D(function(){ .... }); }); });}); For the above example, we are passing CALLBACK functions and it makes the code UNREADABLE and not maintainable, THUS we should change the async logic to avoid this. |
|