为什么console.table不显示最后一个条目

edw*_*rkf 7 javascript console google-chrome google-chrome-devtools

我缺少一些非常明显的东西,但它出现在我的 chrome 浏览器版本 103.0.5060.134(官方版本)(64 位)上,最后一个条目丢失:

const objectTest = { 'one' : 'this is object one' , 'two' : 'this is object two' , 'three' : 'this is object three' } ; 
console.table (objectTest) ;     // appears to skip the final entry
console.log(objectTest.three) ;  // final entry is available
Run Code Online (Sandbox Code Playgroud)

我必须做什么才能console.table显示最后一个条目?

我想开始使用console.table,但JSON.stringify前提是我能让​​它正常工作。

对我来说更奇怪的是 Firefox 似乎工作正常。

EDIT: its working fine on chrome 100-102 and chrome 104-105. its just appears to be not working properly on chrome 103. i tried this out on browserstack.
but again, i am assuming that i am doing something incorrect.

Ber*_*rgi 4

我可以在 Chrome 103.0.5060.134 中重现:

然而,正如您所看到的,最后一个条目并没有真正丢失,它只是隐藏在不必要的水平滚动条下方。如果您选择表中的文本,您仍然可以复制它并找到所选内容:

该错误已被报告至少五次:

该问题已得到修复,并且该修复将很快推出到稳定频道。