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

Exits the current inline group in the console

Examples #

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

Return Type #

void