Created
April 20, 2020 18:56
-
-
Save franklinsales/f7faf6bb390247a886c4d72139710916 to your computer and use it in GitHub Desktop.
console.log tips
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.log("This is a console.log") | |
console.warn("This is a console.warn") | |
console.error("This is a console.error") | |
console.debug("this is a debug", {name: "fake object that you want debug"}) | |
console.group("This is a init of console.group") | |
console.log("This is a item of a console.group in the level 1") | |
console.group("This is a sublevel in a console.group") | |
console.log("This is a item of the sublevel console.group") | |
console.groupEnd(); | |
console.log("Back to level 1"); | |
console.groupEnd(); | |
console.log("Now you're out of the group, and in normal level"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Results below: