-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Implement console.group() / console.groupEnd() / console.groupCollapsed() #9274
Copy link
Copy link
Closed
Labels
A-content/domInteracting with the DOM from web contentInteracting with the DOM from web contentA-devtools
Description
Calling console.group() and an indentation level to further logs.
For example:
console.log(1);
console.group()
console.log(2);
console.log(3);
console.group();
console.log(4);
console.log(5);
console.groupEnd();
console.log(6);
console.groupEnd();
console.log(7);will output:
1
..2
..3
....4
....5
..6
7
See:
- https://developer.mozilla.org/en-US/docs/Web/API/Console/group
- https://developer.mozilla.org/en-US/docs/Web/API/Console/groupEnd
- https://developer.mozilla.org/en-US/docs/Web/API/Console/groupCollapsed
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
A-content/domInteracting with the DOM from web contentInteracting with the DOM from web contentA-devtools