what does fetch return
a promise that resolves to a response object
What is the default request method used by fetch()?
GET
How do you specify the request method (GET, POST, etc.) when calling fetch?
as a second parameter (init object) EX-
fetch(‘URL’, {
method:”POST”
})