admin管理员组文章数量:1344515
I don't want to use any for loop or any of the regular loops, I am trying to use a forEach
but I am getting an error
Uncaught TypeError: data.forEach is not a function
return falsyData.map(function(data) {
data.forEach(function(key) {
if (key.match(reg)) {
return key;
}
});
});
but if I do it this way it works:
return falsyData.map(function(data) {
for (var key in data) {
if (key.match(reg)) {
return key;
}
}
});
why ?
I don't want to use any for loop or any of the regular loops, I am trying to use a forEach
but I am getting an error
Uncaught TypeError: data.forEach is not a function
return falsyData.map(function(data) {
data.forEach(function(key) {
if (key.match(reg)) {
return key;
}
});
});
but if I do it this way it works:
return falsyData.map(function(data) {
for (var key in data) {
if (key.match(reg)) {
return key;
}
}
});
why ?
Share Improve this question asked Sep 2, 2015 at 17:38 NonNon 8,61920 gold badges80 silver badges130 bronze badges1 Answer
Reset to default 8data
is an object - forEach
only runs on Array types. You have to use a for..in
loop to iterate the keys of an object.
本文标签: javascriptNested forEach Uncaught TypeError dataforEach is not a functionStack Overflow
版权声明:本文标题:javascript - Nested forEach: Uncaught TypeError: data.forEach is not a function - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743748062a2532129.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论