You are reading a single comment by @Gordon and its replies. Click here to read the full conversation.
  • Could it be that you're doing:

    p.then((res)=>{
    func_a(a);
    })
    

    and not:

    p.then((res)=>func_a(a))
    

    The former will return 'undefined', which means the promise will execute immediately, but the latter returns the promise returned by func_a which should allow chaining

About

Avatar for Gordon @Gordon started