Hacker News new | ask | show | jobs
by mixmastamyk 1407 days ago
Lots of alerts and console prints. Which sucked, but the modern tools support the giant monstrosities of today. So not a complete win.
1 comments

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.

I remember there being a console window in the late 90s... don't remember what the full functionality was at the time however. Maybe it only showed warnings/exceptions?

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.