4 ms·
I never understood why mozilla decided to implement their own inferior and laggier version of developer tools when firebug existed.
by dependenttypes 6y ago
I never understood why mozilla decided to implement their own inferior and laggier version of developer tools when firebug existed.
- JohnBooty 6y agoIn what way(s) do you find it inferior?
- ars 6y agoIf you log the contents of an object with firebug and then modify the object later in your script the firebug output does not change. But do the same thing with Firefox and the contents of the object will change. To preserve the object as it was when debugged you have to either copy it or log all the specific properties you're interested in rather than the object as a whole.
- coolreader18 6y agoSome would probably find that superior to firebug
- ars 6y agoIt's rare to need to see the current (static) state of an object, more often you want to see how the object changes as the code runs.
- sroussey 6y agoFirebug could do it both ways, that was the beauty of console.dir().