Last active
May 19, 2017 20:42
-
-
Save tbnbooij/0f89ddf81b110b65a432a8e34703da7d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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