nodejs - does forEach create a reference cycle?

72 Views Asked by At

I am a newbie in NodeJS, my background is Swift.

When facing forEach, I wonder if it would create a reference cycle?

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

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

In Swift, the code above will create a reference cycle since the closure has referenced to a function in self, which is doSomething. Is this also a case in NodeJS?

Regards,

0

There are 0 best solutions below