admin管理员组文章数量:1344426
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 badges2 Answers
Reset to default 12Use 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
}
}
本文标签: javascriptHow can I skip key in object loopStack Overflow
版权声明:本文标题:javascript - How can I skip key in object loop - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743702943a2524629.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论