Cloning Arrays

Benchmark created by Mario Klingemann 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
var b = a.slice();
ready
Concat
var b = a.concat();
ready
Concat 2
var b = [].concat(a);
ready

Revisions

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