'for-in' is a type of 'Fast enumeration', which is a language feature that allows you to efficiently and safely enumerate over the contents of a collection using a concise syntax.

learn more… | top users | synonyms (1)

0
votes
2answers
32 views

javascript prototype loop for in array

I am working on a project, which use a lot of "javascript". I have lot of "ajax" calls, which returns always à "json" array. For usefull reasons, I created two prototypes of Array object ("in_array" ...
1
vote
2answers
64 views

looping through object literal and array

I believe I am having an issue with my looping of object literals and arrays. I am trying to use an object literal for the 'map' where I had used an array before. The reason I want to use an object ...
0
votes
2answers
48 views

Bash for in loop that executes wrongly when no file found

I have this bash "for in" loop that looks for pdf files in a directory and prompt them (simplified for the example) #!/bin/bash for pic in "$INPUT"/*.pdf do echo "found: ${pic}" done This ...
1
vote
5answers
41 views

jquery: extend method with two objects - result is object Object?

I'm doing some jQuery tutorial at jQuery.com and try to understand the extend method right now. it works ALMOST. var object1 = { apple: 0, banana: {weight: 52, price: ...
2
votes
1answer
45 views

Trying to dynamically set Pages in Loop with Node.js

I'm trying to do something (which I hope) is simple: receive JSON from the a database and loop through it to create all the necessary page routes in Node.js. As of now, I'm just using stubbed data, ...
0
votes
1answer
42 views

how to see every step of javascript for in loop in chrome?

I found in chrome, can't see every step of the for in loop. for example, using chrome's or chrome canary's debugger, set a break point in the line for (var i in stuff) of the following code,when ...
1
vote
1answer
56 views

How to skip to next in javascript in a for-in with a while inside?

I have a short javascript code where I need to skip to next in the for loop....see below: var y = new Array ('1', '2', '3', '4'); for (var x in y) { callFunctionOne(y[x]); while (condition){ ...
1
vote
3answers
50 views

Easier way of getting the current loop number during for in loop?

I'm writing a for in loop to read a list of names from an NSArray, here is my code. NSArray *names = [NSArray arrayWithObjects:@"Luke",@"James",@"Fred",@"Harry", nil]; for (NSString *name in names) ...
0
votes
1answer
33 views

Python Different the datetime in a Struct Array

import struct from collections import namedtuple StructDeviceInfo = namedtuple('DeviceInfo', ['DeviceID', 'Capturing','Receiving','Socket','DateTime']) DeviceInfoList = [] def threaded_function(): ...
-2
votes
1answer
254 views

jQuery.each vs for-in-Loop [closed]

do you know which of these two methods is better and faster to read the value of objects? jQuery.each $.each( obj, function( key, value ) { alert( key + ": " + value ); }); or for in loop for ...
1
vote
1answer
40 views

Testing if there is an object with a particular attribute in an array of dictionary

Ok boys and gils, i've a question for the community. I actually have an NSMutableArray with some NSDictionnary in it. I perform a -(void) refresh method to parse my JSON feed a new time, but before ...
0
votes
1answer
97 views

Print dictionary in objective c

i can't print my array, and i don't understand what is my problem in class Bank i have @property (nonatomic,strong) NSMutableDictionary *accounts; and VOID function for create account in bank: ...
0
votes
6answers
60 views

get rid of the for-in statement

This is a function that creates breadcrumbs. It initially came from someone else, but I've tweaked it to work for my needs. Now--I'd like to fix the bad syntax of 'for(i in bits)', but when I've tried ...
0
votes
1answer
65 views

%d for naming input and output files in Python

I want to automatically input some files that have names as in array "dates" and then save them after some operations but the code is not working: dates=[20120711,20120712,20120713,20120714,20120715] ...
1
vote
1answer
112 views

Is there a jQuery way of iterating over an objects own properties only?

I'm making a small jQuery-like library, and one thing striking me odd is the behavior of $.each. In javascript we have a for...in loop: for (var key in obj) { console.log(key + ': ' + obj[key]); ...
0
votes
3answers
111 views

How to implement a for-in loop in Objective-C from the end of collection not from beginning?

I' m trying to iterate NSDictionary via the for in loop. But I want it to begin iteration from the end of this collection to its beginning. How can I implement this reversion?
1
vote
2answers
85 views

Is a simple `continue` statement an acceptable alternative to nesting an entire for..in loop's body in the `if`?

Typically, the solution to for..in's notorious caveat is something along the lines of: for(var prop in obj) { if(obj.hasOwnProperty(prop)) { foo(); bar(); baz(); } } I feel like it ...
1
vote
1answer
127 views

Assign object[key] to a temp variable in a javascript “for…in” loop?

I'm working on a JS to show different messages depending on the current url's hash. Now, that's all working, but I was wondering what the best way would be to access my messages (They'll be coded into ...
4
votes
1answer
66 views

While element ordering in for..in loops isn't guaranteed, what deviation between implementations is there in practice? [closed]

I don't remember where, but I once saw it put that for..in loops can go through the elements in any order the implementors like, including forward, backward, randomly, or alternating between forward ...
0
votes
0answers
41 views

Google Spreadsheet MailApp within for ( i in x ) loop

I am trying to write a simple script to iterate through a column on google spreadsheets, and if the cell value is < 6 then it should iterate through a second column, grab the cell value and send an ...
2
votes
1answer
58 views

Difference between a basic for-loop and a for-in-loop in JavaScript [duplicate]

Possible Duplicate: JavaScript “For …in” with Arrays In which situations using for (var i = 0; i < array.length; i++) is different from using for (var i in array) ...
0
votes
2answers
137 views

loop through a json object and count elements with the same value in different arrays

I want to loop through a json object and count elements with the same value in different arrays. Here's a sample of my object var testconn = {"_total": 3, "values": [ { ...
1
vote
3answers
359 views

How do you stop fast enumeration?

How would you stop fast enumeration once you have gotten what your looking for. In a for loop I know you just set the counter number to like a thousand or something. Example: for (int ...
0
votes
2answers
59 views

Is it safe to modify a data structure within a for in loop?

I would like to loop through my collection using a for-in loop, but read it's unsafe to modify the content of my data structure (which would be either a dictionary or an array) within such loop. Is ...
0
votes
2answers
38 views

for in loop returns wrong objects

I have a for in loop where I do not quite get the objects I expect to get. I have a CCLayer class called MainLayer where I add children of class MyUniqueClass. However if I try to get all ...
2
votes
1answer
117 views

Javascript “for(i in array)” setting i to last index

To the best of my understanding, the code var a = new Array("a","b","c"); var out = ""; for(i in a) out += i+":"+a[i]+"\n"; should set out to 0:a 1:b 2:c right? Well, I have the following ...
-1
votes
4answers
67 views

Weird issue with for…in loop

This works: for (var i = 0; i < this.size(); i++) { values.push(this.cards[i].value); } but this doesn't: for (var card in this.cards) { values.push(card.value); } Why?
0
votes
3answers
73 views

Delete item from array , why for and for in output are different?

var arr = ["a", "b", "c",null,undefined]; delete arr[0]; for (var i = 0,j=arr.length; i < j; i++) { console.log(arr[i]); /* undefined b c null undefined */ } for ...
2
votes
1answer
45 views

Why is my for-in loop is looping double the size of my array?

I am using a for-in loop to iterate over an array of two elements, but it is like its looping twice. I have an example here: http://jsbin.com/etoyac/8/
2
votes
2answers
148 views

“for in” objective c empty array

I came to notice that executing a for/in operation in objective c on an initialized empty NSMutableArray was not working as expected. Simplified code is : +(void) convertArray: ...
3
votes
4answers
468 views

Javascript: How to cleanly iterate through object?

I would like to make some properties of an object to be hidden and some to be visible on iteration. So I tried to use prototype but that's not working: ​function Car(){} Car.prototype.version = ...
1
vote
1answer
674 views

awk for-in loop giving unexpected output?

I am currently writing an awk script within a bash script. One of my arguments needs to be split and cycled through. Eg: for an argument of 1234 I need to cycle through each number in the order ...
0
votes
1answer
282 views

Using a for-in loop with NSInteger?

I have an NSMutableArray populated with NSIntegers. I need to loop through the array. I could do: // given NSMutableArray *array of NSIntegers NSUInteger n = [array count]; for (NSInteger i = 0; i ...
0
votes
4answers
143 views

why does JS for each in function give too many?

This has bothered me for a while, see my jsfiddle: http://jsfiddle.net/DHR8Q/, which contains the following javascript code: var id = "11111;22222;33333"; id = id.split(";"); alert(typeof id); for ...
1
vote
5answers
208 views

JavaScript “x in obj”: obj.x is undefined?

The following code : var obj = {uname:"OdO", age:"22"}; alert(obj.uname); results in: OdO Now, using the same concept in a for..in statement : for (x in obj) { ...
1
vote
2answers
111 views

how to put index variable in for … in loop in local scope?

Whenever I use a for ... in loop, the index variable of the loop always seems to be in the variables scope. For example if I have a component with a method that uses this loop: for(key in params){ ...
2
votes
3answers
203 views

for-in and in of JS

var result = function(){} console.log("constructor" in result);//true console.log("__proto__" in result);//true console.log("prototype" in result);//true for (var prop in result) { ...
0
votes
1answer
33 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 ...
1
vote
2answers
205 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 ...
0
votes
3answers
111 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 ...
1
vote
2answers
1k 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 = ...
3
votes
5answers
135 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 ...
1
vote
1answer
591 views

javascript “for (x in y)” statements

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". ...
3
votes
1answer
163 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 ...
1
vote
3answers
312 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 ...
4
votes
1answer
2k 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 ...
1
vote
2answers
123 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' ); ...
0
votes
2answers
173 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 = ...
3
votes
3answers
177 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 ...
-2
votes
3answers
263 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"}, ...

1 2