I have a very simple object, but the table is just never printed fully in Chrome devtools:
console.table({
"ClassMethod#set": {
"checked": 0,
"unchecked": 0
},
"ClassMethod#get": {
"checked": 0,
"unchecked": 0
},
"ClassMethod#constructor": {
"checked": 0,
"unchecked": 0
},
"ClassMethod#method": {
"checked": 0,
"unchecked": 0
},
});
The output is:
Why does it only print three rows, when given four?
It is not a "three-limit", I can just print more, but it always lacks the last one:
Chrome it appears to be buggy, always showing one line less than specified (also with only one row).
You can track the open issue here on bugs.chromium.org
Little spoiler from a comment in the issue
As the issue is no longer reproducible/fixed on chrome beta channel #104.0.5112.48 which will be stable tentatively in next few weeks.
Written Mon, Jul 18, 2022