<script src='https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js'></script>
let fruits = [
{name:"mango", amount: 1},
{name:"apple", amount: 4},
{name:"banana", amount: 2},
{name:"pineapple", amount: 2},
{name:"apple", amount: 2}
]
const sortBy = (key) => {
return (a, b) => (a[key] > b[key]) ? 1 : ((b[key] > a[key]) ? -1 : 0);
};
fruits.sort(sortBy("name"));
let fruits = [
{name:"mango", amount: 1},
{name:"apple", amount: 4},
{name:"banana", amount: 2},
{name:"pineapple", amount: 2},
{name:"apple", amount: 2}
]
_.sortBy(fruits, 'name')
let fruits = [
{name:"mango", amount: 1},
{name:"apple", amount: 4},
{name:"banana", amount: 2},
{name:"pineapple", amount: 2},
{name:"apple", amount: 2}
]
_.sortBy(fruits, 'name')
let fruits = [
{name:"mango", amount: 1},
{name:"apple", amount: 4},
{name:"banana", amount: 2},
{name:"pineapple", amount: 2},
{name:"apple", amount: 2}
]
const sortBy = (key) => {
return (a, b) => (a[key] > b[key]) ? 1 : ((b[key] > a[key]) ? -1 : 0);
};
fruits.sort(sortBy("name"));
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Lo-Dash sortBy() | |
Underscore sortBy() | |
Vanilla sort() |
Test name | Executions per second |
---|---|
Lo-Dash sortBy() | 1258222.4 Ops/sec |
Underscore sortBy() | 1256008.1 Ops/sec |
Vanilla sort() | 4037743.0 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks.
What is tested?
The provided JSON represents three benchmark test cases:
sort()
method without any additional libraries or modifications.sortBy()
function is used to sort the array based on a specified key.Options compared
In each test case:
name
property.sort()
method and its default comparison function._sortBy()
function from the Lo-Dash library, which takes an additional argument for the sorting key.sortBy()
function from the Underscore.js library, similar to Lo-Dash.Pros and Cons of each approach
Vanilla sort():
sort()
method, which is optimized for performance.Lo-Dash sortBy() and Underscore sortBy():
Special considerations
RawUAString
field in each benchmark result provides information about the browser and device running the test. This data can help identify any inconsistencies or differences between browsers.Alternatives
If you're interested in exploring other alternatives for sorting arrays, consider:
These alternatives might provide more flexibility or specific functionality tailored to your requirements. However, they may also introduce additional overhead or dependencies.