What does fetch() return?
A promise.
What is the default request method used by fetch()?
GET
How do you specify the request method (GET, POST, etc.) when calling fetch?
Pass an additional parameter, an object with the property name {method: ‘GET’}. The value has to be capitalized.