easyJS ES6+#63

Promise chain

Prompt

Create a promise chain that:

  1. Fetches a user (simulated: resolve with {id:1, name:'Alice'})
  2. Then fetches their posts (simulated: resolve with ['post1', 'post2']) Log each step. Assign the chain to const chain.

Hints

Solution

Your Code

5 min

Tests

Click Run to test your code