Callback Hell
< h1 > call Hell Demo </ h1 > let h1 = document . querySelector ( "h1" ); function changeColor ( color , delay , NextchangeColor ) { setTimeout (() => { h1 . style . color = color ; if ( NextchangeColor ) NextchangeColor (); }, delay ); } changeColor ( "red" , 1000 ,() => { changeColor ( "blue" , 1000 ,() => { changeColor ( "orange" , 1000 ,() => { changeColor ( "green" , 1000 ,() => { changeColor ( "yellow" , 1000 ); }) }) }) });


Comments
Post a Comment