Cloning Arrays (v28)

Revision 28 of this benchmark created on


Preparation HTML

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

Test runner

Ready to run.

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

Revisions

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