Created
September 30, 2015 07:23
-
-
Save hnq90/af9a2fa94c868ae19d76 to your computer and use it in GitHub Desktop.
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
| var animals = [ | |
| { animal: 'Horse', name: 'Henry', age: 43 }, | |
| { animal: 'Dog', name: 'Fred', age: 13 }, | |
| { animal: 'Cat', name: 'Frodo', age: 18 } | |
| ]; | |
| console.table(animals); | |
| console.trace('trace car'); | |
| console.debug | |
| debug(car.funcY); | |
| console.todo = function( msg){ | |
| console.log( '%c %s %s %s ', 'color: yellow; background-color: black;', '--', msg, '--'); | |
| } | |
| console.important = function( msg){ | |
| console.log( '%c%s %s %s', 'color: brown; font-weight: bold; text-decoration: underline;', '--', msg, '--'); | |
| } | |
| console.todo("This is something that's need to be fixed"); | |
| console.important('This is an important message'); | |
| monitor(functionName); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment