Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Object.hasOwnProperty vs Object in vs Object[] vs Array.indexOf vs Array.includes123123
(version: 0)
Comparing performance of:
Object.hasOwnProperty vs Object in vs Array.indexOf vs direct vs Array includes vs has
Created:
2 years ago
by:
Guest
Jump to the latest result
Script Preparation code:
var object = {}, array = [], i, test = 1000; for (i = 0; i < 1000; i++) { object['something' + i] = true; array.push('something' + i); }
Tests:
Object.hasOwnProperty
object.hasOwnProperty('something' + test)
Object in
('something' + test) in object
Array.indexOf
array.indexOf('something' + test) !== -1
direct
object['something' + test] === true
Array includes
array.includes('something' + test)
has
object.hasOwn('something' + test)
Rendered benchmark preparation results:
Suite status:
<idle, ready to run>
Run tests (6)
Previous results
Fork
Test case name
Result
Object.hasOwnProperty
Object in
Array.indexOf
direct
Array includes
has
Fastest:
N/A
Slowest:
N/A
Latest run results:
No previous run results
This benchmark does not have any results yet. Be the first one
to run it!
Comments
Confirm delete:
Do you really want to delete benchmark?