ExtJS 4 ソースコードを読んでいます。これは clone メソッドの一部です。EntJS 4 で Array の clone メソッドが逆になっているのはなぜですか?
if (type === '[object Array]') {
i = item.length;
clone = [];
while (i--) {
clone[i] = Ext.clone(item[i]);
}
}