What value is passed to the chained then() methods?

Question

In this exercise, we chained several then() methods to the fetch() method. What value is passed to the chained then() methods?

Answer

The value passed to the chained then() methods is the returned value of the previous method that they are chained to.

In this exercise, the first method is fetch(), which returns a Promise object that resolves to a Response object. This value is passed to the first chained then() method. This then() method then returns another value, which is passed to the next chained then() method.