<script>https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.11/lodash.core.js</script>
var arr = [
{name: "test", age: 20},
{name: "best", age: 30},
{name: "blah", age: 50},
{name: "js", age: 10},
{name: "style", age: 29},
];
_.sortBy(arr, 'age');
//arr.sort(sortBy('age'));
_.orderBy(arr, 'age');
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Lodash _.sorBy | |
Lodash OrderBy |
Test name | Executions per second |
---|---|
Lodash _.sorBy | 885692.0 Ops/sec |
Lodash OrderBy | 928178.5 Ops/sec |
Let's dive into the JavaScript microbenchmark on MeasureThat.net.
The provided JSON represents a benchmark comparison between two sorting methods: Lodash's _.sortBy
and plain JavaScript's sort()
function with a custom comparator, which calls the orderBy
method from Lodash. We'll break down what each part of the code is testing, their pros and cons, and other considerations.
Lodash is a popular utility library for JavaScript that provides a collection of functional programming helpers. In this benchmark, it's used to provide two sorting methods: _.sortBy
and _.orderBy
.
arr
based on the value of the 'age'
property. It returns a new sorted array without modifying the original array._.sortBy
, but it can be used as a part of the existing sort()
function.The plain JavaScript sorting approach uses the sort()
function with a custom comparator. The comparator function takes two elements from the array and returns a value that determines their order in the sorted array.
orderBy
method from Lodash, passing the 'age'
property as an argument.sort()
function with a custom comparator can lead to performance issues if the array is large, as it involves creating a new sorted array and copying elements.There are no special JavaScript features or syntax used in this benchmark. It's straightforward JavaScript code that leverages the Lodash library for sorting.
If you're interested in exploring alternative sorting methods, here are a few options:
When benchmarking sorting algorithms, consider the following factors:
Keep in mind that this benchmark is specific to sorting arrays of objects with a single property, 'age'
. If you're exploring different scenarios, adjust your expectations and testing parameters accordingly.