What is a “closure” in JavaScript? Provide an example



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

Post New Answer

More JavaScript Interview Questions

Which type of variable among global and local, takes precedence over other if names are same?

0 Answers  


How do you target a specific frame from a hyperlink in javascript?

0 Answers  


How to test for bad numbers using javascript?

0 Answers  


How do you know if a set of points is a function?

0 Answers  


How fast can you learn coding?

0 Answers  


What are the advantages of using JavaScript?

0 Answers  


what is interface ?

5 Answers  


Can I declare a variable as CONSTANT in JavaScript?

0 Answers  


What is Browser Object Model?

0 Answers  


What is the difference between a web-garden and a web-farm?

0 Answers  


Can you write a random integers function to print integers with in a range?

1 Answers  


How to write html code dynamically using JavaScript?

0 Answers  


Categories