Script Preparation code:
AخA
 
const elementCount = 500;
const array = new Array(elementCount);
const f64array = new Float64Array(elementCount);
for (let i = 0; i < elementCount; i++) {
  const value = Math.random();
  array[i] = value;
  f64array[i] = value;
}
const comparator = (a, b) => a - b;
Tests:
  • Array.prototype.sort

     
    array.sort(comparator);
  • Float64Array.prototype.sort

     
    f64array.sort();
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Array.prototype.sort
    Float64Array.prototype.sort

    Fastest: N/A

    Slowest: N/A

Latest run results:

No previous run results

This benchmark does not have any results yet. Be the first one to run it!