function step1(callback) { setTimeout(() => { console.log("Step 1 completed"); callback(); }, 1000); } function step2(callback) { setTimeout(() => { console.log("Step 2 completed"); callback(); }, 1000); } function step3(callback) { setTimeout(() => { console.log("Step 3 completed"); callback(); }, 1000); } step1(() => { step2(() => { step3(() => { console.log("All steps completed"); }); }); });
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter