提问人: 提问时间:12/10/2022 最后编辑:Konrad 更新时间:12/10/2022 访问量:213
为什么选择 console.dir(add);不显示范围变量?视窗 7
why console.dir(add); not showing scope variable? Windows 7
问:
const add = (function () {let counter = 0; return function () {counter += 1; return counter}}) ();
在 Windows 7 chrome 控制台中,当我 console.dir 变量“添加”时,它不会显示其中的范围,但在 Windows 10 中它会显示。为什么?
答: 暂无答案
评论