Y
Hacker News
new
|
ask
|
show
|
jobs
by
teechap
4019 days ago
Linear definitely isn't faster than binary search. To answer your original question, .indexOf is definitely implemented as linear search in JavaScript
1 comments
Demiurge
4019 days ago
Ok, it makes sense to me now. indexOf is used on mostly unsorted things, like strings. So, I guess the original problem might use a sorted array, or an object instead of an array, since I think the object keys are sorted and looked up pretty fast.
link