gpt4 book ai didi

javascript - 这个递归函数有什么问题?

转载 作者:行者123 更新时间:2023-11-30 09:47:13 25 4
gpt4 key购买 nike

我正在尝试使用递归计算对象中字符串的数量,包括嵌套对象和数组中的字符串。为什么我得到 3 而不是 7;

function strCount(obj, count = 0){
for (var key in obj) {
if (typeof obj[key] === 'object') {
strCount(obj[key], count);
} else if (typeof obj[key] === 'string') {
count++;
}
}
return count;
}

var myobj = {
first: "1",
second: "2",
5: 'sd',
third: false,
fourth: ["anytime",2,3,4],
fifth: null,
sixth: undefined,
seventh:{ ana: 'hell', did: 5, boo : 'foo', har : ['kill', 5]}
};

alert(strCount(myobj));

最佳答案

不要忘记将递归调用的结果添加到count:

function strCount(obj) {
var count = 0;
for (var key in obj) {
if (typeof obj[key] === 'object') {
count += strCount(obj[key]);
} else if (typeof obj[key] === 'string') {
count++;
}
}
return count;
}

var myobj = {first:"1",second:"2",5:'sd',third:false,fourth:["anytime",2,3,4],fifth:null,sixth:undefined,seventh:{ana:'hell',did:5,boo:'foo',har:['kill',5]}};

alert(strCount(myobj));

关于javascript - 这个递归函数有什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38385933/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com