Search code examples
javascriptfirefoxfirefox-developer-tools

Delete Firefox JavaScript console history?


How do I clear the command history of Firefox's JavaScript console? Clearing all history, cookies, cache, etc., doesn't clear the JavaScript console history, nor does clear().


Solution

  • Enter this in the console:

    clearHistory()

    New in Firefox 39. Just like a normal command line, the console command line remembers the commands you've typed. Use this function to clear the console's command history.