JavaScript: Search JavaScript arrays with a binary search
JavaScript Function: Exercise-18 with Solution
Binary Search in Array
Write a function for searching JavaScript arrays with binary searches.
Note : A binary search searches by splitting an array into smaller and smaller chunks until it finds the desired value.
Visual Presentation:

Sample Solution-1:
JavaScript Code:
Output:
4
Flowchart:

Live Demo:
Sample Solution-2:
JavaScript Code:
Output:
4
Flowchart:

For more Practice: Solve these Related Problems:
- Write a JavaScript function that implements binary search on a sorted array without using recursion.
- Write a JavaScript function that performs binary search recursively on a sorted array of numbers.
- Write a JavaScript function that executes binary search on an array of objects based on a specified key property.
- Write a JavaScript function that implements binary search and returns the index of the found element or -1 if not present.
Improve this sample solution and post your code through Disqus.
Previous: Write a JavaScript function to get the number of occurrences of each letter in specified string.
Next: Write a JavaScript function that returns array elements larger than a number.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics