我很好奇,是否有一种方法可以在发送到console.log
的消息发送后对其进行更新。像这样:
const myPrintedMessage = console.log('foo');
// > foo
myPrintedMessage = 'bar';
// > bar
用例正在显示一个快速变化的值,而没有输出大量console.log
命令。类似于Jupyter笔记本。
我相信答案是否定的,因为Chrome Console API Reference或MDN's中没有列出任何内容-但我想向社区咨询。
谢谢!