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?
By adding a second argument into the fetch method call (an init object with a property, method, with a value of POST, GET, etc.)
When does React call a component’s componentDidMount method?
After the FIRST time the component is mounted (following the render method call).
Name three React.Component lifecycle methods.
constructor( ), render( ), componentDidMount( ), componentDidUpdate( ), componentWillUnmount( )
How do you pass data to a child component?
By passing props to the child