What does fetch() return?
returns a promise that resolves with a Response object.
What is the default request method used by fetch()?
a GET request
How do you specify the request method (GET, POST, etc.) when calling fetch?
by setting the value of the method property
How does fetch report errors?
It resolves and sets the ok property to false.