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;
array.sort(comparator);
f64array.sort();
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Array.prototype.sort | |
Float64Array.prototype.sort |
This benchmark does not have any results yet. Be the first one to run it!