devtools 

Send to Kindle
home » snippets » chrome » devtools



Notes

Keyboard Shortcuts

Ref: Keyboard Shortcuts, Sources Panel, Become more effective when paused at a breakpoint

Keys Action
Cmd-Shift-C Show Elements tab
Cmd-Shift-J Show Console tab
Esc in Elements tab Toggle inline Console
Cmd-[ Go to previous panel
Cmd-] Go to next panel
H in elements panel Hide the element

console.table function

console.table([{a: 1, b:2}, {b:3, c:4}, [123]])

output

(index) a b c 0
0 1 2 undefined undefined
1 undefined 3 4 undefined
2 undefined undefined undefined 123