Skip to content

Instantly share code, notes, and snippets.

@h3xxx
Created January 13, 2016 10:33
Show Gist options
  • Save h3xxx/b540226705793320b41e to your computer and use it in GitHub Desktop.
Save h3xxx/b540226705793320b41e to your computer and use it in GitHub Desktop.
Snippet for clear JS console.
// taken from http://stackoverflow.com/questions/3011600/clear-javascript-console-in-google-chrome
if (typeof console._commandLineAPI !== 'undefined') {
console.API = console._commandLineAPI;
} else if (typeof console._inspectorCommandLineAPI !== 'undefined') {
console.API = console._inspectorCommandLineAPI;
} else if (typeof console.clear !== 'undefined') {
console.API = console;
}
console.API.clear();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment