nodejs - forEach是否创建了一个参考周期?

时间:2017-07-10 10:15:25

标签: node.js foreach reference-cycle

我是NodeJS的新手,我的背景是Swift

当面对forEach时,我想知道它是否会创建参考周期?

const array = [1, 3, 2, 4]
arrach.forEach(function(element) {
    doSomething(element)
})

function doSomething(number) {
    // ...
}

Swift中,上面的代码将创建一个引用循环,因为闭包引用了self中的函数,即doSomething。这也是NodeJS中的一个案例吗?

此致

0 个答案:

没有答案