Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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

Answer Posted / 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       View All Answers


Please Help Members By Posting Answers For Below Questions

What value does prompt() return if the user clicked the cancel button?

819


What are the difference between javascript and jquery?

1022


What is the scope variable in javascript?

949


What is a method in javascript?

946


What typeof returns for a null value?

979


What is use of JavaScript and jquery?

1016


What is the output of 10+20+”30″ in JavaScript?

1164


What is NaN?

979


What is stack queue?

861


Is jquery easier than javascript?

836


What is are the types of the pop up box es available in javascript?

932


How to submit a form using JavaScript by clicking a link?

983


What are the variable naming conventions in javascript?

913


How to make a function in javascript?

868


In Java coding we will write a public static void main()? Why won't we write as a static public void main()

2532