Skip to content

Instantly share code, notes, and snippets.

@lastobelus
Created January 20, 2016 20:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lastobelus/4b7026e47852b30c6114 to your computer and use it in GitHub Desktop.
Save lastobelus/4b7026e47852b30c6114 to your computer and use it in GitHub Desktop.
function bob(){
console.groupCollapsed("in bob");
console.log("calling mary");
mary();
console.log("back in bob");
console.groupEnd();
}
function mary() {
console.group("in mary");
console.log("hi");
console.groupEnd();
}
bob();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment