|
|
|
|
|
by commandlinefan
1409 days ago
|
|
Actually, console.print was a later addition - when I started looking at Javascript, you could only do alerts, or you could call "status" to display something in the lower part of the frame. And if you accidentally alert()-ed inside a loop... Still, I can't comprehend how you could develop anything in Javascript with just console.print either. You have my respect and admiration. |
|
It wasn't too dissimilar to developing a gui app, you could print to the console, raise a dialog, or if you wanted to be fancy implement a log with a window or pane to show them. Logging is what I use today for backend systems. It is usually enough, only breaking out a debugger once or twice a year.