-
-
Notifications
You must be signed in to change notification settings - Fork 32.2k
Closed
Labels
consoleIssues and PRs related to the console subsystem.Issues and PRs related to the console subsystem.
Description
- v10.0.0:
- Microsoft Windows [Version 10.0.17133.73] 64-bit:
- console:
Repl demo using sample from docs:
> console.table([{ a: 1, b: 'Y' }, { a: 'Z', b: 2 }]);
┌─────────┬──────────────────┐
│ (index) │ Values │
├─────────┼──────────────────┤
│ 0 │ { a: 1, b: 'Y' } │
│ 1 │ { a: 'Z', b: 2 } │
└─────────┴──────────────────┘
Expected a three column table with headings ['(index)', 'a', 'b'], per docs:
console.table([{ a: 1, b: 'Y' }, { a: 'Z', b: 2 }]);
// ┌─────────┬─────┬─────┐
// │ (index) │ a │ b │
// ├─────────┼─────┼─────┤
// │ 0 │ 1 │ 'Y' │
// │ 1 │ 'Z' │ 2 │
// └─────────┴─────┴─────┘
unigazer
Metadata
Metadata
Assignees
Labels
consoleIssues and PRs related to the console subsystem.Issues and PRs related to the console subsystem.