8

Have you ever copy the the data from the console in chrome?
Means the data you print by using console.log().
There is a sure way to copy the data from the chrome console. Even there is many nested objects.

I love that feature of chrome.

Comments
  • 0
    Thankyou @teganburns
  • 2
    I explain here.
    If you want to copy the object from the chrome.
    Then there is way:
    1.Right-click an object in Chrome's console and select Store as Global Variable from the context menu. It will return something like temp1 as the variable name.
    2. Chrome also has a copy() method, so copy(temp1) in the console should copy that object to your clipboard.

    This a way. To copy the object.
    But this doesn't work on recursive objects.
Add Comment