What does fetch() return?
returns a promise
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?
in the second parameter of the fetch method which is an object that holds various properties and methods for you to customize the type of request you are making
How does fetch report errors?
through the use of Response.ok property and throwing a new Error when that value is false