<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js'></script>
var fruits = [
{name:"banana", amount: 2},
{name:"apple", amount: 4},
{name:"pineapple", amount: 2},
{name:"mango", amount: 1}
];
sortBy = (key) => {
return (a, b) => (a[key] > b[key]) ? 1 : ((b[key] > a[key]) ? -1 : 0);
};
_.orderBy(fruits, ['name'],['asc']);
fruits.concat().sort(sortBy("name"));
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
lodash orderby | |
native sort |
Test name | Executions per second |
---|---|
lodash orderby | 1244912.9 Ops/sec |
native sort | 3650834.2 Ops/sec |
Let's break down what's being tested on the provided JSON benchmark:
Benchmark Definition
The benchmark compares two approaches to sorting an array of objects in ascending order: using Lodash (a popular JavaScript utility library) and the built-in sort()
method of JavaScript arrays.
Lodash approach
The benchmark defines a custom function sortBy
that takes a key as an argument. This function returns another function that compares two elements based on the value of the provided key. The comparison is done in ascending order (1 for larger values, -1 for smaller values, and 0 for equal values). The Lodash approach uses this sortBy
function to sort the fruits
array.
Native JavaScript approach
The benchmark defines a simple sorting function that takes another function (sortBy
) as an argument. This function concatenates the original fruits
array with an empty array, sorts the concatenated array using the provided sortBy
function, and then discards the sorted result to only keep the modified array.
Pros and Cons
sort()
methodOther considerations
fruits
array with 4 elements). For larger datasets, the performance difference between these approaches might become more pronounced.fruits
array.Library and syntax notes
The Lodash library is a popular JavaScript utility library that provides various functions for tasks like string manipulation, array manipulation, and object manipulation. In this benchmark, it's used to provide a reusable sorting function (sortBy
).
There are no special JS features or syntax mentioned in the benchmark definition or test cases.
Alternatives
If you want to compare different sorting algorithms or approaches without relying on Lodash, you could consider alternative libraries like:
Keep in mind that these alternatives would require more significant changes to the benchmark and might introduce additional complexity.
If you prefer not to use external libraries, you could also explore built-in JavaScript sorting algorithms or techniques, such as: