javascript - How can I skip key in object loop - Stack Overflow

I was wondering if there is any way to skip key in object loop. If I have:obj = {key1 : [ 1, 2, 3 ],key

I was wondering if there is any way to skip key in object loop. If I have:

obj = {
   key1 : [ 1, 2, 3 ],
   key2 : [ 4, 5 ],
   key3 : []
}

how can I skip, for example, the empty one. Because I want to join() the not empty arrays in that object, and filter them. If I join that empty array the filter looks for empty string and of course it doesn't find it, and everything brakes.

var match = $('.widget');
for ( var i in obj ){
    var joined = obj[i].join();
    match = match.filter(joined);
}

I have tried to delete it:

if ( obj[i].length == 0 ) {
    delete obj[i]
};

but error occurs that obj[i] is undefined and can't join it. How can I just skip it.

I was wondering if there is any way to skip key in object loop. If I have:

obj = {
   key1 : [ 1, 2, 3 ],
   key2 : [ 4, 5 ],
   key3 : []
}

how can I skip, for example, the empty one. Because I want to join() the not empty arrays in that object, and filter them. If I join that empty array the filter looks for empty string and of course it doesn't find it, and everything brakes.

var match = $('.widget');
for ( var i in obj ){
    var joined = obj[i].join();
    match = match.filter(joined);
}

I have tried to delete it:

if ( obj[i].length == 0 ) {
    delete obj[i]
};

but error occurs that obj[i] is undefined and can't join it. How can I just skip it.

Share Improve this question edited Jan 28, 2013 at 18:58 Панайот Толев asked Jan 28, 2013 at 18:56 Панайот ТолевПанайот Толев 6,6075 gold badges21 silver badges28 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 12

Use loop control:

for (var i in obj) {
   if (obj[i].length == 0) {
       continue;
   }
   ...
}

You need to pass the key to delete a property :

for ( var i in obj ){
    if ( obj[i].length == 0 ) {
        delete i
    }
}

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

相关推荐

  • javascript - How can I skip key in object loop - Stack Overflow

    I was wondering if there is any way to skip key in object loop. If I have:obj = {key1 : [ 1, 2, 3 ],key

    16小时前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

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

关注微信