为什么 jslint 抱怨此代码以及我应该如何修复它。
if ('children' in object) {
for (key in object.children) {
recurse(object.children[key], key);
}
}
显然定义了递归。
为什么 jslint 抱怨此代码以及我应该如何修复它。
if ('children' in object) {
for (key in object.children) {
recurse(object.children[key], key);
}
}
显然定义了递归。