<script src="https://cdn.jsdelivr.net/lodash/4/lodash.min.js"></script>
var data = { foo: { bar: { baz: 'hello' } } }
function native(obj) {
return (obj && obj.foo && obj.foo.bar && obj.foo.bar.baz) !== undefined;
}
function lodash(obj) {
return _.get(obj, 'foo.bar.baz') !== undefined;
}
native(data)
lodash(data)
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Native | |
Lodash |
Test name | Executions per second |
---|---|
Native | 2908747.2 Ops/sec |
Lodash | 1016737.8 Ops/sec |
I'll break down the provided benchmark and explain what's being tested, compared, and considered.
Benchmark Overview
The benchmark compares two approaches to check if a property exists in an object:
native
that uses the "&&" operator chain to access nested properties of an object._.get
) that performs similar path traversal as the native approach.Comparison
The benchmark compares the execution time of these two approaches on a specific dataset (data
). The goal is to determine which approach is faster.
Pros and Cons
Library Considerations
The benchmark uses Lodash as a library to implement _.get
. Lodash is a popular utility library for JavaScript that provides various functions for working with data structures. In this case, the _.get
function is used to perform path traversal and return a value if the specified path exists.
Special JS Features or Syntax
There are no special features or syntax mentioned in the benchmark code. However, it's worth noting that some modern JavaScript engines (e.g., V8) have optimizations for certain operations, such as property access. These optimizations might affect the performance of both approaches.
Other Alternatives
If you need to perform similar checks, consider the following alternatives:
Keep in mind that these alternatives might have different performance characteristics and use cases compared to the native check property exists and Lodash.get approaches.