I just spent three days living inside a chrome debugger doing just that.
The trick is to set a breakpoint and the next line after the Backbone / jQuery / Underscore and F8 code when you get there.
how
for(_(obj).each(function(v,k,l){ console.log( k,v,l); });
Set breakpoints on the for
line and console
line. F11 to the for line, then F8, and then continue with your step.
Itβs a little painful to set up, but since switching breakpoints is easier than setting them at the initial stage, when you set it up for serviceability.
tkone source share