If I google the 'firebug console API', it will lead me to this page:
http://getfirebug.com/wiki/index.php/Console_API
which documents for me a Javascript API that I can use to write to the firebug console
Google chrome also has a console object. Where is its equivalent API page?
For example, Firebug allows: console.log('%c%s', 'color: #ABC', 'hi') to display a string in a specific color
While Google Chrome only accepts console.log('%s', 'hi) - it does not accept% c
source share