But that does work completely differently from the debuggers in all the other browsers whereas the Venkman one gives Firefox a debugger that works the same as all the other browsers already have built into them.
Actually the JavaScript debugger (not the console but the actual debugging tool) is just about identical across all the major browsers with just the positions of the buttons within the debugger varying between browsers. It is built into IE8, Safari, Chrome, and Opera and can be added to IE6 & 7 using the Developer Toolbar plugin and to Firefox by installing the Venkman extension.
Using the debugger you can set breakpoints in the script or step through it statement by statement and view the values in any variable prior to the next statement being executed.
Commonly a debug console is used. It’s different for each browser, but sending information to console.log() commonly results in the information being made available there.
Ctrl-Shift-J is a common shortcut for the javascript console in many web browsers, whereas in IE (it’s special) they use F12 for their developer tools.