Closures in JavaScript

kudvenkat
Youtube
Related Topic
:- Javascript Web Development

In this video we will understand closures in JavaScript with an example. What is a closure A closure is an inner function that has access to the outer function’s variables in addition to it's own variables and global variables. The inner function has access not only to the outer function’s variables, but also to the outer function’s parameters. 

Comments