What is a “closure” in JavaScript? Provide an example
Answer / hrpatelsoft@gmail.com
var globalVar = "xyz";
(function outerFunc(outerArg) {
var outerVar = 'a';
(function innerFunc(innerArg) {
var innerVar = 'b';
console.log(
"outerArg = " + outerArg + "
" +
"innerArg = " + innerArg + "
" +
"outerVar = " + outerVar + "
" +
"innerVar = " + innerVar + "
" +
"globalVar = " + globalVar);
})(456);
})(123);
Is This Answer Correct ? | 0 Yes | 0 No |
Which type of variable among global and local, takes precedence over other if names are same?
How do you target a specific frame from a hyperlink in javascript?
How to test for bad numbers using javascript?
How do you know if a set of points is a function?
How fast can you learn coding?
What are the advantages of using JavaScript?
what is interface ?
Can I declare a variable as CONSTANT in JavaScript?
What is Browser Object Model?
What is the difference between a web-garden and a web-farm?
Can you write a random integers function to print integers with in a range?
How to write html code dynamically using JavaScript?