I want to get time difference between a request & response. For example in below code what is time interval to complete the request ?
return fetch('https://facebook.github.io/react-native/movies.json')
.then((response) => response.json())
.then((responseJson) => {
**# How much time above fetch request took ?**
return responseJson.movies;
})