Last active
November 28, 2018 04:39
-
-
Save EricHech/ac41bed25e0fb1146329c6c8830a4c9a to your computer and use it in GitHub Desktop.
console.log tips
This file contains hidden or 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.log('%c A log in green' + '%c A log in red', 'font-size: 40px; font-weight: 600; color: green;', 'font-size: 40px; font-weight: 600; color: red;'); | |
// another trick: console.assert will print the second value only if the first one is falsey |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment