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:
>Solution :
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

