In Firebug, the DOM tab shows a list of all your public variables and objects. In Chrome\'s console you have to type the name of the public variable or object you want to ex
List the variable and their values
for(var b in window) { if(window.hasOwnProperty(b)) console.log(b+" = "+window[b]); }
Display the value of a particular variable object
console.log(JSON.stringify(content_of_some_variable_object))
Sources: comment from @northern-bradley and answer from @nick-craver