Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. function root(url) {
  2. ajax(url, resp1 => {
  3. ajax(resp1, resp2 => {
  4. ajax(resp2, resp3 => {
  5. ajax(resp3, resp4 => {
  6. ajax(resp4, resp5 => {
  7. // To be continued...
  8. });
  9. });
  10. });
  11. });
  12. });
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement