我是NodeJS
的新手,我的背景是Swift
。
当面对forEach
时,我想知道它是否会创建参考周期?
const array = [1, 3, 2, 4]
arrach.forEach(function(element) {
doSomething(element)
})
function doSomething(number) {
// ...
}
在Swift
中,上面的代码将创建一个引用循环,因为闭包引用了self
中的函数,即doSomething
。这也是NodeJS中的一个案例吗?
此致