Running the below code on the console, I get an array of objects.
fetch('https://api.github.com/users/chriscoyier/repos') .then(response => response.json()) .then(data => { // Here's a list of repos! console.log(data) }); How can I access the data later? For example if I wanted to console.log the data[0].archive_url, after the promise has resolved? But that gives an error "Uncaught ReferenceError: data is not defined". How do I access that array of objects?

datato a global variable.