Hacker News new | ask | show | jobs
by mustak_im 2552 days ago
Why does `print(...)` in Firefox acts like `console.log`?
1 comments

It only acts like console.log in the browser console, not in a script. Interesting.
The Chrome console defines a few console-only convenience functions too: https://github.com/GoogleChrome/devtools-docs/blob/master/do...
Handy for debugging I guess?