Globant interview question

What is a clousure function in Javascript?

Interview Answers

Anonymous

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.

Anonymous

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