Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Created September 4, 2019 09:27
Show Gist options
  • Save indreklasn/ba190afddc90a5f790f48466af13313c to your computer and use it in GitHub Desktop.
Save indreklasn/ba190afddc90a5f790f48466af13313c to your computer and use it in GitHub Desktop.
console.log("This is the first level");
console.group();
console.log("Level 2");
console.group();
console.log("Level 3");
console.warn("More of level 3");
console.groupEnd();
console.log("Back to level 2");
console.groupEnd();
console.log("Back to the first level");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment