Promise.race( list_of_promises ) returns a promise with the resolve/reject result for the 'fastest' promise from the list.
My question is what happens to the other promises ? (those who lose the race...)
Testing in console mode with node.js seems to indicate that they continue running.
This seems consistent with the fact that there is no way to 'kill' a promise. (I mean no way available to the programmer that I know of).
is this correct ?