var obj = { a: 1, b: 2, c: 3, d: 4, e: 5 };
'c' in obj
Object.hasOwn(obj, 'c')
obj.hasOwnProperty('c')
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
in | |
Object.hasOwn | |
Object.prototype.hasOwnProperty |
Test name | Executions per second |
---|---|
in | 125213264.0 Ops/sec |
Object.hasOwn | 55485684.0 Ops/sec |
Object.prototype.hasOwnProperty | 63428716.0 Ops/sec |
Let's break down the benchmark definition and test cases.
Benchmark Definition
The benchmark is defined by a JSON object that specifies:
Name
: The name of the benchmark, which is "in vs Object.hasOwn vs Object.prototype.hasOwnProperty".Description
: An empty string, indicating that no description is provided.Script Preparation Code
: A JavaScript code snippet that creates an object obj
with five properties: a
, b
, c
, d
, and e
. This code will be executed before running the benchmark.Html Preparation Code
: An empty string, indicating that no HTML preparation is required.Test Cases
The benchmark consists of three test cases:
in
operator to check if a property exists in an object.Object.hasOwn()
method to check if an object has a specific property.hasOwnProperty()
method on the obj
prototype to check if it has a specific property.What is tested?
The benchmark tests how these three approaches compare in terms of performance when checking if a property exists in an object:
in
operatorObject.hasOwn()
methodhasOwnProperty()
method on the prototypeThese methods all achieve similar results, but they have different implementations and possible optimizations.
Options compared
The benchmark compares three options for checking if a property exists in an object:
in
operator checks if a property exists in an object by looking it up in the object's internal properties table.hasOwnProperty()
method on the object itself, which is called when the property name starts with two underscores (i.e., _
). For other properties, it checks if the object has a hasOwnProperty()
method that returns true for that property name.hasOwnProperty()
method directly on the object's prototype, which can be faster than calling it on the object itself.Pros and cons of each approach
Here are some pros and cons of each approach:
in
operator.hasOwnProperty()
being available on all objectsLibrary and purpose
None of these approaches use a specific library, but they do demonstrate different aspects of how JavaScript engines optimize property lookups.
Special JS feature or syntax
The benchmark uses the in
operator, which is a native JavaScript feature. There are no special features or syntaxes used here.
Alternatives
Other alternatives for checking if a property exists in an object include:
hasOwnProperty()
method on the object itself_
) and then using the in
operator or Object.hasOwn()
has()
functionNote that these alternatives may have different performance characteristics and are not always equivalent to the approaches tested in this benchmark.