JS 递归
Posted ljyqd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS 递归相关的知识,希望对你有一定的参考价值。
今日同事遇到递归问题
function isExpandedLeftCategory(node) ..... if (A==B) return true; else for (var i = 0; i < childrenList.length; i++) isExpandedLeftCategory(childrenList[i]); // return undefined
总结原因,递归需要return返回; 使用:return isExpandedLeftCategory(childrenList[i]);即可
以上是关于JS 递归的主要内容,如果未能解决你的问题,请参考以下文章