<script src="https://cdn.jsdelivr.net/npm/lodash@4.17.11/lodash.min.js"></script>
var arr = [];
var object = {
type: 'aaa',
subtype: 'bbb',
card_last4:'bbb',
card_type:'bbb',
card_exp_month:'bbb',
card_exp_year:'bbb',
card_country:'bbb',
foo: 'bar'
};
for (var i = 0; i <= 100000; i++) { arr.push(object); }
arr.map(el => _.pick(el, ['type', 'subtype', 'card_last4', 'card_type', 'card_exp_month', 'card_exp_year', 'card_country']));
function pick(object, keys) {
return keys.reduce((obj, key) => {
if (object && object.hasOwnProperty(key)) {
obj[key] = object[key];
}
return obj;
}, {});
}
arr.map(el => pick(el, ['type', 'subtype', 'card_last4', 'card_type', 'card_exp_month', 'card_exp_year', 'card_country']));
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
_.pick | |
native |
Test name | Executions per second |
---|---|
_.pick | 10.7 Ops/sec |
native | 59.9 Ops/sec |
The benchmark you're looking at compares two different methods for extracting specific properties from an array of objects: one using the Lodash library’s _.pick
function and the other using a native JavaScript implementation.
_.pick
: This method leverages the Lodash library to efficiently extract a given set of properties from each object in the array.pick
, which mimics the behavior of _.pick
using pure JavaScript._.pick
Besides using Lodash or a custom function like this, other alternatives to consider include:
In conclusion, this benchmark serves to illustrate the trade-offs between utilizing a popular utility library versus a native approach, providing performance insights that can guide developers in optimizing their code.