Last Updated: February 25, 2016
·
13.33K
· dpashkevich

Go to function definition in Chrome Developer Tools

Looks like this awesome feature landed in Chrome recently but it saves you a ton of time while debugging your webapp!

Show Function Definition

When inspecting an object that contains in the Console, right click on a function and you will see a handy "Show function definition". It will take you to the place in the source code where the function is defined!

Alternatively, you can just hover over the function () { word to preview function body in a tooltip.

Did you know about that?