Back to listJavaScript
Callback Hell 📉
Lv.3187@mukitaro80 playsDec 29, 2025
Before async/await, we lived in the pyramid of doom. Can you survive the indentation?
preview.js
1getData(function(a) {2 getMoreData(a, function(b) {3 getMoreData(b, function(c) {4 getMoreData(c, function(d) {5 getMoreData(d, function(e) {6 console.log("Finally done!");7 });8 });9 });10 });11});Custom problems are not included in rankings