var obj = {
property : "value"
};
delete obj.property
obj.property = undefined;
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Delete | |
Undefined |
Test name | Executions per second |
---|---|
Delete | 33054492.0 Ops/sec |
Undefined | 27099766.0 Ops/sec |
Let's break down what's being tested in this JavaScript microbenchmark on MeasureThat.net.
Benchmark Definition
The benchmark compares two approaches to delete or set a property to undefined on an object:
delete obj.property
obj.property = undefined;
Options Compared
We have two options being compared:
delete
keyword: This is a built-in JavaScript operator that removes a property from an object by its name.undefined
: Setting a property to undefined
effectively deletes it.Pros and Cons of Each Approach
Other Considerations
delete
keyword only removes a reference to the property from the object's internal hash table, while setting a property to undefined
actually deallocates the memory allocated by the property.undefined
. Both approaches can lead to additional checks.Library or Special JS Feature Used
There are no libraries mentioned in this benchmark, and no special JavaScript features (e.g., async/await, generators) are used beyond the standard JavaScript language.
Alternatives
Other alternatives for deleting properties from an object include:
Object.defineProperty()
with configurable: false
Object.delete()
(not supported in older browsers)null
or undefined
, followed by property removalKeep in mind that these alternatives might not offer significant performance benefits over the delete and assignment approaches, and may have different implications for memory management and other factors.