Cloning Arrays (v16)

Revision 16 of this benchmark created on


Preparation HTML

<script>
  var a = [];
  for (var i = 0; i < 2000; i++) {
   a[i] = i;
  }
  var slice = Array.prototype.slice;
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
Slice
var b = a.slice();
ready
Concat
var b = a.concat();
ready
Concat 2
var b = [].concat(a);
ready
Slice with 0 index
var b = a.slice(0);
ready
Map
var b = a.map(function(e) {
    return (e);
});
ready
Array.prototype.slice.call
var b = slice.call(a);
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.