InterviewSolution
Saved Bookmarks
| 1. |
What is Closure with example? |
|
Answer» A function that can access its parent SCOPE, even after the parent function has CLOSED is CALLED JAVASCRIPT closure. Example
var myFunc = makeFunc(); |
|