为什么这会显示在 Web 控制台编译器中以及如何修复它并找到值

Why does this show in web console compiler and how to fix it and find the value

这听起来可能断章取意,但是,有谁知道为什么显示这个 2,只要发生这种情况,我往往会得到错误的数据。无论如何可以看到那里显示的数据。

如果有人好奇代码,基本上就是一个递归函数。

  (function postRow() {
        if (state == "run") {
              table.update(update_motor());

        }
        requestAnimationFrame(postRow);
        // setTimeout(postRow, 20);

  })();

The image shows the result I am talking about. The location that "2 appears.

"2"表示重复。您可以在 Chrome 开发工具中将其关闭,方法是转到“设置”>“首选项”>“控制台”,然后取消选中我相信的“相似群组”。

已编辑:

找到相似的post、here is the correct answer