<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 pickBy(object) {
const obj = {};
for (const key in object) {
if (object[key]) {
obj[key] = object[key];
}
}
return obj;
}
arr.map(el => pickBy(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 | 90.4 Ops/sec |
This benchmark compares the performance of the Lodash library's _.pick
function against a native JavaScript implementation of a similar functionality. The purpose is to evaluate which approach is faster for picking specific properties from an object when applied on a large number of objects.
Lodash _.pick
:
arr.map(el => _.pick(el, ['type', 'subtype', 'card_last4', 'card_type', 'card_exp_month', 'card_exp_year', 'card_country']));
_.pick
simplifies the process of creating a new object composed of selected properties from the original object.Native JavaScript Implementation:
pickBy
function that manually iterates through the object's properties and builds a new object based on specified keys.function pickBy(object) { /* implementation */ }
arr.map(el => pickBy(el, ['type', 'subtype', 'card_last4', 'card_type', 'card_exp_month', 'card_exp_year', 'card_country']));
_.pick
: Approximately 10.67 executions per second._.pick
Pros:
_.pick
, enhancing overall development efficiency.Cons:
Pros:
Cons:
Use Case: If performance is a critical concern and the operation is performed frequently in performance-sensitive applications, the native implementation is more favorable. However, for projects where code readability and maintenance might be more crucial, Lodash is a good choice despite the performance trade-off.
Alternatives: Other alternatives could include using modern JavaScript features like destructuring combined with object spreading, or implementing libraries like Ramda or Immutable.js, which offer functional programming utilities similar to Lodash. However, these might also come with their own performance implications and trade-offs.
Library Context: Lodash is widely used in JavaScript projects for handling data manipulation efficiently, often showcasing a balance between ease of use and performance across various tasks.
In conclusion, the decision between using Lodash or a native solution should be based on project requirements, expected data volume, and specific performance demands.