472,958 Members | 2,268 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,958 software developers and data experts.

closures in JavaScript

I've written a short article explaining closures in JavaScript. It's
at:

http://www.martinrinehart.com/articl...-closures.html

I think I've understood. I look forward to your constructive critique.
Oct 3 '08 #1
4 1801
Ma************@gmail.com wrote:
I've written a short article explaining closures in JavaScript. It's
at:

http://www.martinrinehart.com/articl...-closures.html

I think I've understood. I look forward to your constructive critique.
- A closure is _not_ "a bundle of data and code that manipulates that data";
that is how you could describe an *object* (and often it is done so),
which has properties and methods (which are merely callable properties in
ECMAScript implementations) to operate on these properties.

A closure is instead a subroutine (function) that reproduces its
definition context when executed. This definition context would
contain what is called "bound variables" that can then be accessed
from within the subroutine when executed (cf. Wikipedia etc.)

- Inner functions, by which you mean function declarations within function
declarations, must be distinguished from function expressions that you
are using later in your article to create closures.

While both constructs can create a closure, the former cannot create
closures with bound "variables" that are created after variable
instantiation. In contrast to function expressions, function declarations
cannot be within a block statement, so they cannot be conditional (except
with evil[tm] eval()).

I find calling a function expression an "inner function" to be confusing
at best. That is a term that I would use only for nested function
declarations.

And while the Specification makes no statement regarding the nesting depth
of functions (be they declared or created through an expression), there is
most certainly a practical limit, stack size included. IIRC we have
discussed this here before.

- I disagree with your sentiment that JS/ES was more pythonic than Python;
knowing both languages quite well, when it comes to power of expression
ECMAScript implementations still have a lot to learn from Python.
Incidentally, they are beginning to: read Brendan Eich's blog regarding
this; then consider Array comprehensions being supported since JavaScript
1.7 (Gecko 1.8.1/Firefox 2.0.x), which is but a Python copycat.

- The statement "In addition to explicitly declared parameters and vars,
there are other things. You can access some of them directly, such as
this and arguments." is wrong, because neither of the mentioned features
are either parameters or variables.

`this' is a keyword and a (Reference) value that refers to the calling or
constructed object. `arguments' is a property (of the Activation/Variable
object).

- The statement "Other parts, such as the activation object and the
execution context are also present, but you cannot access them from
JavaScript." is wrong in its absoluteness, because you can access the
Activation Object of the global execution context with `this' because
the Global object is also the Variable Object of this context.

The execution context as such is not anything that is supposed to be
accessible in code because it is merely a theoretical construct.

- "When outer() returns a function it also returns a copy of its execution
context." No, it does not, that's nonsense; because again, the execution
context is only a theoretical construct.

Instead, when the Function object is created in outer() it would need to
retain some information about which of the "variables" (properties) in it
are bound to the execution context of outer() and which are not; probably
a copy of or a reference to the Variable Object of the execution context
created with the previous outer() call.

What is returned is a reference to the Function object. Whether or not
that Function object retains a copy of or a reference to the Variable
Object of the execution context created with the previous outer() call
instead, remains to be seen; I would presume this to be
implementation-dependent, although it would be more efficient to use
a reference.

- As for your example, where is `init()'?

- As for your summary, where is `grow'?
HTH

PointedEars
--
Anyone who slaps a 'this page is best viewed with Browser X' label on
a Web page appears to be yearning for the bad old days, before the Web,
when you had very little chance of reading a document written on another
computer, another word processor, or another network. -- Tim Berners-Lee
Oct 3 '08 #2
Thomas 'PointedEars' Lahn wrote:
- The statement "In addition to explicitly declared parameters and vars,
there are other things. You can access some of them directly, such as
this and arguments." is wrong, because neither of the mentioned features
are either parameters or variables.

`this' is a keyword and a (Reference) value that refers to the calling or
constructed object. `arguments' is a property (of the Activation/Variable
object).
Ignore that; I misunderstood your statement.

However, I think it is wrong to say that that (function) parameters are
declared: function *expressions* are _not_ *declarations* and still have a
parameter list (better: arguments). I am not sure what to use instead;
"Definition"/"defined" sounds better to me here.
PointedEars
--
realism: HTML 4.01 Strict
evangelism: XHTML 1.0 Strict
madness: XHTML 1.1 as application/xhtml+xml
-- Bjoern Hoehrmann
Oct 3 '08 #3
On Oct 3, 4:29*pm, MartinRineh...@gmail.com wrote:
I've written a short article explaining closures in JavaScript. It's
at:

http://www.martinrinehart.com/articl...-closures.html

I think I've understood. I look forward to your constructive critique.
Martin,

I don't agree with this:

"Some things are worth repeating: When outer() returns a function it
also returns a copy of its execution context. That is not a reference
to its execution context, it is a copy. (Probably it's a reference to
a copy, but that's an implementation detail we don't need to worry
about.) That is why I added "Sort of." when I said the closure had
access to the vars (and so on) of the outer function. It really has
access to a new set of vars (and so on) that are an exact copy of the
outer function's execution context at the time the closure was
returned by outer()."

I think that the execution context of the outer function is not copied
nowhere, it's just that it's not destroyed, it's kept in memory for as
long as the references to inner functions exist. It will last as long
as those references. Consider this example:

<html><head>
<script>
window.onload= function () {
var e, capturedInAClosure= 0;
document.body.appendChild(e=
document.createElement('button')).innerHTML= "doIt";
e.onclick= function () { e.innerHTML= ++capturedInAClosure };
document.body.appendChild(e=
document.createElement('button')).innerHTML= "doItAgain";
e.onclick= function () { e.innerHTML= ++capturedInAClosure };
document.body.appendChild(e= document.createElement('p')).innerHTML=
capturedInAClosure;
};
</script>
</head><body></body></html>

2 references to 2 inner functions remain after returning from
window.onload: doIt.onclick() and doItAgain.onclick(). Both point to
the very same 'capturedInAClosure' var, end the very same 'e'. So they
are sharing the execution context of window.onload. It's not 'a copy'
nor a 'new set of vars that are an exact copy' of the outer function.

Don't you think so ?

--
Jorge.
Oct 3 '08 #4
On Oct 3, 8:37*pm, Jorge <jo...@jorgechamorro.comwrote:
>
2 references to 2 inner functions remain after returning from
window.onload: doIt.onclick() and doItAgain.onclick(). Both point to
the very same 'capturedInAClosure' var, end the very same 'e'. So they
are sharing the execution context of window.onload. It's not 'a copy'
nor a 'new set of vars that are an exact copy' of the outer function.
Also, everytime the outer function is called, a new execution context
is created:

<html><head>
<script>
window.onload= function () {
var e, capturedInAClosure= 0;
document.body.appendChild(e=
document.createElement('button')).innerHTML= "doIt";
e.onclick= function () { e.innerHTML= ++capturedInAClosure };
document.body.appendChild(e=
document.createElement('button')).innerHTML= "doItAgain";
e.onclick= function () { e.innerHTML= ++capturedInAClosure };
document.body.appendChild(e= document.createElement('p')).innerHTML=
capturedInAClosure;
if (!arguments.callee.inited) {
arguments.callee.inited= true;
setTimeout(window.onload,0);
setTimeout(window.onload,0);
setTimeout(window.onload,0);
}
};
</script>
</head><body></body></html>

--
Jorge.
Oct 3 '08 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

14
by: Alexander May | last post by:
When I define a function in the body of a loop, why doesn't the function "close" on the loop vairable? See example below. Thanks, Alex C:\Documents and Settings\Alexander May>python Python...
5
by: paolo veronelli | last post by:
I've a vague idea of the differences,I don't know scheme anyway. I'd like to see an example to show what is missing in python about closures and possibly understand if ruby is better in this...
4
by: Marc Tanner | last post by:
Hello, I am currently working on a eventhandling system or something similar, and have the problem of loosing scope. I have read many interesting posts on this group and the faq article about...
2
by: Jake Barnes | last post by:
Using javascript closures to create singletons to ensure the survival of a reference to an HTML block when removeChild() may remove the last reference to the block and thus destory the block is...
10
by: Emre Sevinc | last post by:
Take a look at the following snippet: <html> <head> <script> function add(elementId) { var container = document.getElementById(elementId); for (var i = 0; i < 10; i++) { var elt =...
5
by: Leo Meyer | last post by:
Hello, somewhere I have read that JavaScript supports closures. Does someone know how to make them work? What I want to do is this: function f1(x, obj) { var eventhandler =...
16
by: Karl Kofnarson | last post by:
Hi, while writing my last program I came upon the problem of accessing a common local variable by a bunch of functions. I wanted to have a function which would, depending on some argument,...
40
by: MartinRinehart | last post by:
I've rewritten a short article explaining closures in JavaScript. It's at: http://www.martinrinehart.com/articles/javascript-closures.html A big Thank You to PointedEars and Jorge for helping...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: Aliciasmith | last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
1
by: Teri B | last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course. 0ne-to-many. One course many roles. Then I created a report based on the Course form and...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM) Please note that the UK and Europe revert to winter time on...
3
by: nia12 | last post by:
Hi there, I am very new to Access so apologies if any of this is obvious/not clear. I am creating a data collection tool for health care employees to complete. It consists of a number of...
0
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
2
by: GKJR | last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.