You are reading a single comment by @Gordon and its replies. Click here to read the full conversation.
  • :) You can create and execute a function for it...

    let p = func_a(0);
    for (a=20;a<100;a=a+20) 
      (function(a) {
        p=p.then((res)=>func_a(a));
      })(a);
    

    It's a bit crude, but it works

About

Avatar for Gordon @Gordon started