Skip to content

Instantly share code, notes, and snippets.

@SaraVieira
Last active October 30, 2017 20:16
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/087ed667bb3cb2a51468da85bf628796 to your computer and use it in GitHub Desktop.
Save SaraVieira/087ed667bb3cb2a51468da85bf628796 to your computer and use it in GitHub Desktop.
console.group('One');
for (i = 0; i < 10; i++) {
console.log(i);
}
console.groupEnd('One');
console.group('Two');
for (i = 0; i < 10; i++) {
console.log(i);
}
console.groupEnd('Two');
console.group('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