作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
const result 的值是多少?我的猜测是 (3, 1)。这让我感到困惑,因此我们将不胜感激。
function makeCounter() {
let count = 0;
return function() {
count += 1;
return count;
}
}
const counter1 = makeCounter();
const counter2 = makeCounter();
counter1();
counter1();
const c1 = counter1();
const c2 = counter2();
const result = [c1,c2];
console.log(result)
最佳答案
是的,[3, 1] 是正确的。 (您可以选择“运行代码片段”来查看它的运行情况)。
这里的原因是调用makeCounter()
返回一个函数,其中局部count
变量初始化为零。
每次调用 makeCounter()
返回的函数(即 counter1
或 counter2
)时,该计数器的 count
递增。
counter1()
被调用了 3 次,counter2()
被调用了一次。最后它们被放在一个数组中,因此是 [3, 1]。
关于javascript - makeCounter() 的结果值是多少,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71904630/
const result 的值是多少?我的猜测是 (3, 1)。这让我感到困惑,因此我们将不胜感激。 function makeCounter() { let count = 0;
我是一名优秀的程序员,十分优秀!