Skip to content

Instantly share code, notes, and snippets.

@tbnbooij
Last active May 19, 2017 20:42
Show Gist options
  • Save tbnbooij/0f89ddf81b110b65a432a8e34703da7d to your computer and use it in GitHub Desktop.
Save tbnbooij/0f89ddf81b110b65a432a8e34703da7d to your computer and use it in GitHub Desktop.
console.wtf = function() {
for(var i = 0; i < 30; i++) {
if(i % 2 === 0) {
console.warn("What a");
}
else {
console.error("terrible failure!");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment