Skip to content

Instantly share code, notes, and snippets.

@SaraVieira
Last active October 30, 2017 20:17
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 SaraVieira/62ac0ad17870967009f1c4ea98bcccfc to your computer and use it in GitHub Desktop.
Save SaraVieira/62ac0ad17870967009f1c4ea98bcccfc to your computer and use it in GitHub Desktop.
console.groupCollapsed('One');
for (i = 0; i < 10; i++) {
console.log(i);
}
console.groupEnd('One');
console.groupCollapsed('Two');
for (i = 0; i < 10; i++) {
console.log(i);
}
console.groupEnd('Two');
console.groupCollapsed('Theree');
for (i = 0; i < 10; i++) {
console.log(i);
}
console.groupEnd('Three');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment