diff --git a/doc/api/console.md b/doc/api/console.md index 08fcfa027c7bad..3c2a02cb2fdab1 100644 --- a/doc/api/console.md +++ b/doc/api/console.md @@ -286,6 +286,20 @@ If formatting elements (e.g. `%d`) are not found in the first string then [`util.inspect()`][] is called on each argument and the resulting string values are concatenated. See [`util.format()`][] for more information. +### console.group() + + +Increases indentation of subsequent lines by one tab (`\t`). + +### console.groupEnd() + + +Decreases indentation of subsequent lines by one tab (`\t`). + ### console.info([data][, ...args])