我正在阅读 ExtJS 4 源代码。这是克隆方法的一部分。为什么 EntJS 4 中的 Array 的 clone 方法会倒退?
if (type === '[object Array]') {
i = item.length;
clone = [];
while (i--) {
clone[i] = Ext.clone(item[i]);
}
}
我正在阅读 ExtJS 4 源代码。这是克隆方法的一部分。为什么 EntJS 4 中的 Array 的 clone 方法会倒退?
if (type === '[object Array]') {
i = item.length;
clone = [];
while (i--) {
clone[i] = Ext.clone(item[i]);
}
}