Back to Content

console: groupCollapsed() static method

files/en-us/web/api/console/groupcollapsed_static/index.md

latest1.4 KB
Original Source

{{APIRef("Console API")}} {{AvailableInWorkers}}

The console.groupCollapsed() static method creates a new inline group in the console. Unlike {{domxref("console/group_static", "console.group()")}}, however, the new group is created collapsed. The user will need to use the disclosure button next to it to expand it, revealing the entries created in the group.

Call {{domxref("console/groupEnd_static", "console.groupEnd()")}} to back out to the parent group.

See Using groups in the console in the {{domxref("console")}} documentation for details and examples.

Syntax

js-nolint
console.groupCollapsed()
console.groupCollapsed(label)

Parameters

  • label {{Optional_Inline}}
    • : Label for the group.

Return value

None ({{jsxref("undefined")}}).

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also