DEV Community

Discussion on: How to Copy a Big Object or Array From Console to Clipboard

Collapse
 
vtrpldn profile image
Vitor Paladini • Edited

You're right! I've created bigObject so I could simulate something like:

fetch('http://example.com/movies.json')
  .then(response => response.json())
  .then(data => console.log(data.bigObject));

but I'm glad you caught that 😄