deno.com
method Console.groupEnd
#Console.groupEnd(): void

Exits the current inline group in the console

Examples #

#

Example 1

console.group('Group');
console.log('Grouped message');
console.groupEnd();

Return Type #

void