Globant Interview Question

What is a clousure function in Javascript?

Interview Answers

Anonymous

Nov 23, 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

Nov 23, 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