Sitecore | .Net Core| Azure| C# | Nextjs
Sitecore for living and rest is for party.
Tuesday, February 19, 2013
Javascript Basics Tutorial Part 6 : Nested Function
Nested Function---> Outer Inner function.
Semantics
function Outer(n)
{
function Inner()
{
do something with (n);
return n;
}
return Inner// Call Inner function;
}
Outer(10); //VALID CALL
Inner(); //INVALID CALL.
Chapter 6:
Output:
No comments :
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments ( Atom )
No comments :
Post a Comment