Pregunta de entrevista de Globant

What is a clousure function in Javascript?

Respuestas de entrevistas

Anónimo

23 nov 2020

Closure means that an inner function always has access to the vars and parameters of its outer function, even after the outer function has returned.

Anónimo

23 nov 2020

Closure means that an inner function always has access to the vars and parameters of its outer function, even after the outer function has returned.

2