(function(){
var arr = Array(30);
Benchmarker().compare({ attempts:10, times:1e5 }, {
mine:function(){
for( var a = arr, i = a.length; i; )
a[--i] = a[i];
},
jquery:function(){
arr.slice();
}
});
})();
/**
* Conclusions
* A simple reversed for, can be faster than a native method.
*/