I am looking at this code - https://facebook.github.io/react-native/docs/network.html
return fetch(\'https://facebook.github.io/react-native/movies.json\')
If you don't wrap the body of an arrow function with curly brackets, it will evaluate the expression and return the result implicitly. If you wrap it with curly brackets, the result is not implicitly returned and you have to do it explicitly.
For this reason, the second part 'equals' the following:
.then(function(responseJson) {
return responseJson.movies;
})