11
votes
3answers
131 views
What are good JavaScript OOP resources?
JavaScript is a lightweight and powerful language, but it's often misunderstood and hard to learn (especially about its object oriented programming). Here are what I found:
Books
JavaScript: The …
3
votes
7answers
187 views
More explanation on Lexical Binding in Closures?
There are many SO posts related to this, but I am asking this again with a different purpose
I am trying to understand why closures are important and useful. One of things that I've read in other SO …
15
votes
2answers
175 views
How do closures work behind the scenes? (C#)
I feel I have a pretty decent understanding of closures, how to use them, and when they can be useful. But what I don't understand is how they actually work behind the scenes in memory. Some example …
1
vote
2answers
60 views
JavaScript variable binding and loop.
Consider such loop:
for(var it = 0; it < 2; it++)
{
setTimeout(function() {
alert(it);
}, 1);
}
The output is:
=> 2
=> 2
I would like it to be: 0, 1. I see two ways to …
2
votes
5answers
93 views
Scope with a self-invoking function in Javascript
Take below code iterates over 6 input buttons and attaches an onclick event to every button that alerts the index number of the respective iteration:
for (var i = 1; i < 6; ++i) {
var but = …
3
votes
3answers
70 views
Differing behavior when starting a thread: ParameterizedThreadStart vs. Anonymous Delegate. Why does it matter?
When I run the code below the output is "DelegateDisplayIt", typically repeated 1-4 times. I've run this code probably 100 times, and not once has the output ever been "ParameterizedDisplayIt". So it …
0
votes
0answers
24 views
Silverlight closure with Google Maps
I'm using Silverlight as the client for an application that uses the Google Maps API.
I use the HTML bridge to talk to the JS API and that works quite well. One of my issues was that I couldn't use …
36
votes
7answers
2k views
How does a javascript closure work ?
Like the old Albert said : "If you can't explain it to a six-year old, you really don't understand it yourself.”. Well I tried to explain JS closures to a 27 years old friend and completely failed.
…
5
votes
5answers
212 views
What exactly does “closure” refer to in JavaScript?
I understand what closures are, but I am having some trouble grokking exactly what the term closure refers to. I have seen the term used in many websites, but rarely do they agree on the actual …
1
vote
2answers
52 views
Django Admin app: building a dynamic list of admin actions
I am trying to dynamically build a list of admin actions using the get_actions() method on a ModelAdmin. Each action relates to a particular instance of another model, and as new instances may be …
0
votes
1answer
62 views
Callback, return value and HTML5 executeSql function
Hi. I have a big problem. I know it's about callback, closure but I don't know how to solve the problem. Here is my code
$.Model.extend('Article',
{
findAll : function(params, success, error){ …
1
vote
4answers
631 views
How does one return from a groovy closure and stop its execution?
I would like to return from a closure, like one would if using a break statement in a loop.
For example:
largeListOfElements.each{ element->
if(element == specificElement){
// do …
2
votes
3answers
209 views
JavaScript - How do I learn about “closures” usage?
From Wikipedia, the free encyclopedia: Closure (computer science)
In computer science, a closure is a
function that is evaluated in an
environment containing one or more
bound variables. …
4
votes
3answers
75 views
What’s the name of the problem that relates to optimizing closures on a stack-based system?
I remember hearing about a general optimization problem that relates to function closures, stating that in general it's difficult to optimize the creation of a closure using only stack-based memory …
3
votes
2answers
104 views
PowerShell: an elegant way to create closures
Keith Hill explained me that blocks in PowerShell are not closures and that to create closures from blocks I have to call method .GetNewClosure().
Is there any elegant way to create closures from …
