In this short post, we go through the process of making a console.logged Object available in Chrome’s javascript console.
TLDR Right-click the Object you want to inspect and click Store as global variable. This creates a variable with name temp<n> where <n> is a number (starts from 1). Use the variable to access the Object.
Explanation The Hack Version Sometimes when I’m debugging, I need to access an Object and its methods from the Javascript console.
Read more →