method Console.groupEnd
Jump to headingConsole.groupEnd(): void
Exits the current inline group in the console
Examples Jump to heading
Jump to heading
Example 1
Example 1
console.group('Group');
console.log('Grouped message');
console.groupEnd();
Return Type Jump to heading
void