Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

8
votes
9answers
809 views

“var” or no “var” in JavaScript's for in loop?

What's the correct way to do a for in loop in JavaScript? The browser doesn't complain about each approach. There's this, which actually declares x: for (var x in set) { ... } And this, which ...
5
votes
1answer
347 views

Visual Studio Post-build event: for %f in (set) command

This command in the Visual Studio 2010 Post-build event for %f in ("$(ProjectDir)$(OutDir)*.dll") do echo %f (echo will be replaced with some other tool) gives me the error The command "[...]" ...
5
votes
3answers
131 views

Proper for/in variable declaration

What is the proper syntax for declaring the loop-specific variable in a for/in loop? The first two both seem to work (and don't raise any flags in Google Closure Compiler), but only the third one ...
3
votes
5answers
84 views

Are for… in loops useful in JavaScript?

I'm new to JavaScript, and I'm currently learning about the so-called for... in loop. Does one actually use those loops when coding in JavaScript? I can see how all other types of loops are useful ...
3
votes
1answer
60 views

Enumerating over an NSMutableDictionary — can't access object properties from within the loop

I have an NSMutableDictionary, analyzedPxDictionary, containing a bunch of Pixel objects (a custom class I created). Among other things, Pixel objects contain an NSArray property called rgb. That ...
3
votes
3answers
91 views

Javascript closures issues

So, I'm still reading Apress Pro Javascript Techniques and i'm having troubles with closures. As John Resig states: Closures allow you to reference variables that exist within the parent ...
3
votes
5answers
210 views

Using “for in” sentence and compiler error E2064

I want to use for in sentence in my test case under D2010. If I want to write in Param.Value variable then compiler reports error 2064, but allows to write in Param.Edit.text from the same record, ...
3
votes
4answers
133 views

Why is JavaScript's For…In loop not recommended for arrays?

I read somewhere (sorry, I can't find the link) that the For...In loop is not recommended for arrays. It is said here: http://www.openjs.com/articles/for_loop.php that it is meant for associative ...
3
votes
3answers
287 views

JavaScript Loops: for in vs for

I faced a strange behaviour in Javascript. I get "Object doesn't support this property or method" exception for the removeAttribute function in the following code: var buttons = ...
3
votes
4answers
103 views

what is for…in statement in javascript

anyone can explain how to use for...in statement in javascript. I had read the w3school article but i think it is not so clear.Below is the code, please explain this: <html> <body> ...
3
votes
2answers
2k views

Javascript array iteration using for..in with MooTools included

I am iterating over an array in MooTools but seeing additional items when iterating through the array using the shorthand for..in loop. It works fine when I use the regular for loop. Is this a problem ...
2
votes
1answer
85 views

For…in statement Objective-C

I am studying Objective-C and I came across this "for...in" statement. I searched for it but i still don't get how it works. Could someone so nice and explain to me in a noob-friendly how this ...
2
votes
3answers
120 views

Specifying initial value of `x` in `for(x in object)` loops

If I have the following code: <html> <body> <script type="text/javascript"> var mycars = new Array(); mycars[0] = "Saab"; mycars[1] = ...
2
votes
4answers
137 views

Is an if with a continue a good pattern to prevent excessive nesting while iterating over properties in Javascript?

I normally use this pattern to iterate over object properties: for(var property in object) { if(object.hasOwnProperty(property)) { ... } } I don't like this excessive indentation and ...
2
votes
4answers
381 views

Create new object within a for-in-loop

I want to create a new object and assign some properties for each array stored within some json. I have this mostly working except... for (var i in json) { a = 0; a++; ...
2
votes
2answers
570 views

Does JavaScript's for in loop iterate over methods?

In an article on yuiblog Douglas Crockford says that the for in statement will iterate over the methods of an object. Why does the following code not produce ["a", "b", "c", "d", "toString"]? Aren't ...
2
votes
3answers
461 views

Delphi, What do I do about “no GetEnumerator present” error when using a for loop over Excel Interop Worksheets collection?

I'm trying to write a Delphi program that will loop through each worksheet in an Excel file and format some cells. I'm receiving an error while trying to use the for-in loop over the ...
1
vote
2answers
178 views

FOR-IN loop that does not trigger due to it's range being not CONTINUOUS in delphi

My problem got simplified after a few days of tearing my hair out (left the important bits only, refer to my many edits for history), here it is: showmessage('i='+inttostr(i)); for i in ...
1
vote
2answers
198 views

“Object doesn't support this property or method IE” error in Javascript possibly from using hasOwnProperty?

I'm getting this error in IE8 and IE7 for some reason. I'm looping through all keys within my object and it keeps telling me Object doesn't support this property or method on this on: var inVal = ...
1
vote
3answers
68 views

Iterate over String.prototype

I am aware that the for in loop can help iterate through properties of objects, prototypes and collections. The fact is, I need to iterate over String.prototype, and though ...
1
vote
2answers
56 views

Is it possible to loop through an object, and get the key names ($key => $value)?

In PHP, we can loop through an associative array, and get the values of both the key and the value like this: $myArray = array( 'key1' => 'value1', 'key2' => 'value2' ); ...
1
vote
1answer
186 views

For loop in a for loop?

I have two dataframes: df1<- as.data.frame(matrix(1:15, ncol=5)) df2<- as.data.frame(matrix(30:44,ncol=5)) By using the two dataframes I want to calculate the zscore. The functions is: z = ...
1
vote
3answers
64 views

Javascript: Why use a for loop instead of a for-in loop for arrays?

I have been reading Object-Oriented Javascript by Stoyan Stefanov, and at one point he writes: The for-in loop is used to iterate over the element of an array (or an object, as we'll see later). ...
1
vote
1answer
84 views

Javascript for…in seems to only return every other index in array

I have a page (actually, about thirty or so) where I'm trying to change the classname of specific elements based on a querystring variable. Everything works fine except for this part, I'm getting a ...
1
vote
5answers
170 views

Python iterator question

I have this list: names = ['john','Jonh','james','James','Jardel'] I want loop over the list and handle consecutive names with a case insensitive match in the same iteration. So in the first ...
1
vote
1answer
152 views

Javascript for..in and jQuery's $.for() don't work for XMLHttpRequest in IE

UPDATE: The problem only occurs when I use an older version of jQuery (1.3.2) and not on the newest version (1.4.2). ORIGINAL QUESTION: I have found a weird behavior, and am wondering if there are ...
0
votes
1answer
27 views

How did this program get me the values of property of the object?

var nyc = { fullName: "New York City", mayor: "Michael Bloomberg", population: 8000000, boroughs: 5 }; var myProperty = this.nyc; /*this is one variable so how can it store all the ...
0
votes
3answers
38 views

Javascript for-in statement

I'm trying to output the keys of an array in javascript like this: data=[8, 4, 6, 9, 5, 2, 4, 6]; for(i in data){console.log(i);} But instead of only outputting the keys, it outputs this: 0 1 2 3 ...
0
votes
1answer
54 views

javascript for_in_statement

just copy this code from w3schools. var person={fname:"John",lname:"Doe",age:25}; for (x in person) { document.write(person[x] + " "); } I want to know that, what I have to assume instead of "x". ...
0
votes
2answers
59 views

Applying styles in javascript with a for-in loop

So I have an object full of key-value pairs that describe the intended style of an element and I am trying to apply that style to an element by looping through the object like this: element = ...
0
votes
0answers
63 views

Understanding for-in-loop Calculs

I have this little code here, pixels fall from the top, if they collide with a block they will Stay on the surface of the block. Then if there is an other Pixel falling on the pixel that is no more ...
0
votes
3answers
64 views

for-in-loop/ Condition Is only used for the first element of the a List [closed]

I have searched for three days and didn't find a solution, Here is the code: if (keyboardState.IsKeyDown(Keys.Right)) { for (int i = GlobalClass.BlocksPositions.Count - 1; i > 0; i--) { ...
0
votes
1answer
65 views

for-in-loop/Can't use a variable in a other method. XNA

I will explain in depth after. So here is my code, we have an Elevation[] variable and each Elevation gets a random number: public void elevation() { for (x = (int)Width - 1; x >= 0; ...
0
votes
5answers
381 views

For .. in loop?

I'm losing it here.. I am now extremely confused about how this loop works. From w3 schools: var person={fname:"John",lname:"Doe",age:25}; for (x in person) { document.write(person[x] + " "); } ...
0
votes
1answer
43 views

How to replace part of path-to-file in a for…in loop using shell script on unix?

Need help big-time. I am totally stuck on this one. I am looping (recursively) through all the files in a directory and printing a list of files. Something like: # srcDir="input received from command ...
0
votes
5answers
161 views

Python for-in loop preceded by a variable

foo = [x for x in bar if x.occupants > 1] After googling and searching on here, couldn't figure out what this does. Maybe I wasn't searching the right stuff but here it is. Any input in ...
0
votes
3answers
139 views

Resetting the iterator in a for…in loop

This is part of the code I am using to draw some random circles: if(circles.length != 0) { //1+ circles have already been drawn x = genX(radius); y = genY(radius); var i = 0; ...
0
votes
3answers
118 views

JavaScript For-each/For-in loop changing element types [closed]

Possible Duplicate: JavaScript “For …in” with Arrays I'm trying to use the for-in syntax to loop through an array of numbers. Problem is, those numbers are getting ...
0
votes
1answer
61 views

leaks inside thread

Ok... Hello everybody I have not been able to solve this one. I have TONS of leaks inside my code and I cannot figure out why. First you should know, this code is running in background, so I create ...
0
votes
4answers
298 views

Adding functions to javascript's Array class breaks for loops

I was looking for a way to add max/min functions to JavaScript's Array class, which seemed to be a solved problem: JavaScript: min & max Array values?. However, when I tried using that, I started ...
0
votes
6answers
450 views

Should Javascript's “for in” construct iterate the length property?

I'm making a bookmarklet, but I've encountered some wierd behaviour in IE8. The code causing the problem is this: var els = document.getElementById("my_id").getElementsByTagName("*"); for(var i in ...
-1
votes
1answer
87 views

for-in-loop/ Condition Is only used for the first element of the a List

I have searched for three days and didn't find a solution, Here is the code: if (keyboardState.IsKeyDown(Keys.Right)) { for (int i = GlobalClass.BlocksPositions.Count - 1; i > ...
-2
votes
3answers
87 views

Problems with JavaScript “for in” loop

I have an array of objects which will be the basis for a certain menu in my website. It will be build using JavaScript: [ {"menuName":"Contact Info","sectionName":"contacts"}, ...