a script like below: <script> var fn = function(){ for(var k=0,i=0;i<10;i++){ if(i%3==0)console.log(++k) } } fn(); //break point set here </script>
If I break when this function is call, then set "k" break on property change, continue... I suppose firebug will break when i==3,6,9, but it never break. Did I misunderstand break on property change? -- You received this message because you are subscribed to the Google Groups "Firebug" group. To post to this group, send email to firebug@googlegroups.com To unsubscribe from this group, send email to firebug+unsubscr...@googlegroups.com For more options, visit this group at https://groups.google.com/forum/#!forum/firebug