I'm not sure what's the best way to phrase the subject (please advise on
the terminology), but for example, if we have a promise chain

```js
const p = new Promise(r => setTimeout(r, 100))

p
.then(() => Promise.resolve(console.log('A')))
.then(() => Promise.resolve(console.log('B')))
.then(() => Promise.resolve(console.log('C')))
```

, will the `console.log`s fire in the same turn when promise `p` settles,
or will they fire in three separate turns?

*/#!/*JoePea
_______________________________________________
es-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to