How to Clear the JavaScript Console in Google Chrome or Firebug Programmatically
Join the DZone community and get the full member experience.
Join For Free
If you are extensively working with the console in the chrome developer
tools and the console in Firefox/firebug and you find the need to clear
the console many times while you are testing your code, both Chrome and
Firefox have a feature that lets you do that programmatically.
Chrome
clear()
Firefox
console.clear()
I feel that the Firefox version of the command makes more sense. I have
absolutely no idea why the Chrome guys chose to do it differently.
If you are a mouse person, in chrome, you can use the context menu and
select Clear Console. If you are using firefox instead, you can use the
clear button on top of the firebug console. But I guess you know that
already.
Console (video game CLI)
Clear (Unix)
Google Chrome
JavaScript
Google (verb)
Published at DZone with permission of Ryan Sukale. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments