javascript - Iterate through associative array using sequential for loop - Stack Overflow

I have a lot of data stored in associative array.array = {'key':'value'};How to loo

I have a lot of data stored in associative array.

array = {'key':'value'};

How to loop throught an array like this using an normal for loop and not a loop like here: /

I don't want to use for-in because of this problems: Mootools when using For(...in Array) problem

I have a lot of data stored in associative array.

array = {'key':'value'};

How to loop throught an array like this using an normal for loop and not a loop like here: http://jsfiddle/HzLhe/

I don't want to use for-in because of this problems: Mootools when using For(...in Array) problem

Share Improve this question edited May 23, 2017 at 12:00 CommunityBot 11 silver badge asked Apr 4, 2013 at 11:04 JacobJacob 4,03123 gold badges91 silver badges151 bronze badges 7
  • Why don't you like for .. in loop? – VisioN Commented Apr 4, 2013 at 11:05
  • why not using for..in loop ..? – Sudhir Bastakoti Commented Apr 4, 2013 at 11:05
  • It is messing with Mototools! stackoverflow./questions/7034837/… – Jacob Commented Apr 4, 2013 at 11:06
  • @Jacob that is because you have to use the .hasOwnProperty method to filter out the prototype chains properties – Jeff Shaver Commented Apr 4, 2013 at 11:09
  • @Jacob You are using object and not array. These elements are different in JavaScript. for .. in loop is the best to iterate objects. – VisioN Commented Apr 4, 2013 at 11:09
 |  Show 2 more ments

2 Answers 2

Reset to default 8

As others have pointed out, this isn't an array. This is a JavaScript object. To iterate over it, you will have to use the for...in loop. But to filter out the other properties, youw ill have to use hasOwnProperty.

Example:

var obj={'key1': 'value1','key2':'value2'};

for (var index in obj) {
    if (!obj.hasOwnProperty(index)) {
        continue;
    }
    console.log(index);
    console.log(obj[index]);
}

http://jsfiddle/jeffshaver/HzLhe/3/

JavaScript does not have the concept of associative arrays. Instead you simply have an object with enumerable properties, so use a for..in loop to iterate through them. As stated above you may also want to perform a check with hasOwnProperty to ensure that you're not performing operations on inherited properties.

for (var prop in obj){
    if (obj.hasOwnProperty(prop)){
        console.log(obj[prop]);
    }
}

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743605422a4477751.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信