|
The "Debug Console" is a very usefull javascript-program that lets you test and debug your own
javascript-programs very easely. It lets you survey objects, variables and functions and it's even
possible to execute functions (self-defined / functions from the window-object) manually via console!
The quite common alternative - debugging with the "alert"-function has many disadvantages, which
the Debug Console avoids (interruption of the process, no abort-possibility with endless-loops,
necessary to remove the "alerts" after testing etc.)
'Debug Console' - easy testing & debugging of javascript-programs!
Very usefull is also the fact, that the debug-functionality can be switched off centrally. So it is
not necessary to remove the debug-statements from your code after testing! Even better - if you
leave the statements in your code, later - if necessary - you just switch debugging on again, and
it helps you to solve your problem.
And the best: The program is absolutely free! Just download and try it!
|