Search code examples
javascriptbrowser-console

Clear browser console including 'Console was cleared' statement - JavaScript


I would like the console to be completly cleared whenever I call the console.clear() function

However, is there any way to remove the 'Console was cleared' text once that function has been run? I don't mind it normally, but in this case it would be very helpful if there was a solution.

enter image description here


Solution

  • You can always print loads of lines to hide any messages in the console that were there before hand.

    console.log("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
    

    Or the short version which is

    console.log('\n'.repeat('25'));
    

    It is not the best solution but it does work in your case if you don't want the message to say that the console has been cleared