At what time fetch resolves promise

I read on MDN that the returning promise of fetch resolves “as soon as the server responds with headers”.
What does this means?
Does it resolve before I receive any body data?
But why is the body data available as soon as the fulfilled callback function is called?

enter image description here