慕田峪9158850
这种一般是工具生成,看起来目的像是测试数组方法的性能。换成语义化点变量就能看懂了。console.time('test')var arr = [1,2,3,4,5,6,7,8,9];
(function(a, index) { var fn = function(v) { while (--v) {
a['push'](a['shift']());
}
};
fn(++index);
}(arr, 0x64));console.timeEnd('test')