<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js'></script>
var generateText = function(){
return Math.random().toString(36).substring(2, 4);
}
var arr = []
for(i=0; i<100; i++){
const obj = {}
obj.id = i;
obj.text = generateText()
arr.push(obj)
}
_.orderBy(arr, ['text'], ['desc'])
arr.sort((a, b) => a.text - b.text)
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
_.orderBy | |
Array.sort |
Test name | Executions per second |
---|---|
_.orderBy | 25481.5 Ops/sec |
Array.sort | 143906.9 Ops/sec |
Let's dive into the Benchmark Definition JSON and explain what's being tested.
Overview
The benchmark is designed to compare the performance of two sorting algorithms: Lodash's _.orderBy
and Array.prototype's sort
. The test case generates an array of 100 objects with random "text" and "id" properties, and then sorts the array in descending order by "text" and ascending order by "id".
Options being compared
The benchmark is comparing two options:
_.orderBy
: This function takes an array and a key (in this case, "text"), as well as a descriptor for the sorting (in this case, descending for "text" and ascending for "id"). It returns a new sorted array.sort
: This is a built-in JavaScript method that sorts the elements of an array in place based on a compare function.Pros and cons
Here are some pros and cons of each approach:
_.orderBy
:sort
:Library and its purpose
In this benchmark, Lodash is used as a library for providing the _.orderBy
method. The lodash.min.js
file is included in the HTML preparation code using a script tag. Lodash provides a convenient way to perform various tasks, including sorting arrays with multiple keys.
Special JS feature or syntax
There are no special JavaScript features or syntax used in this benchmark. It only relies on standard JavaScript methods and libraries.
Other alternatives
If you wanted to write this benchmark from scratch without using an external library like Lodash, you could use a custom implementation of the _.orderBy
method or implement the sorting logic yourself. Some other alternatives for sorting arrays include:
Keep in mind that writing a benchmark from scratch can be more complex and may require more expertise in JavaScript and computer science.