The following is a simple binary search code written in JS. This code is returning -1 whereas it should return 20. Things I have done after looking around a bit:
Replaced "while(min < max)" to "while(min <= max)" would pop up an error on KhanAcademy.
I have used the Math.floor function, which for some reason pops an error "env.Math.floor is not a function" so instead used the "Math.round".
var doSearch = function(array, targetValue) {
var min = 0;
var max = array.length - 1;
var guess;
while (min < max) {
guess = Math.round((max + min) / 2);
if (array[guess] === targetValue) {
return guess;
} else if (array[guess] < targetValue) {
min = guess + 1;
} else {
max = guess - 1;
}
}
return -1;
};
var primes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97];
var result = doSearch(primes, 73);
console.log("Found prime at index " + result);
//print (primes[]);
//Program.assertEqual(doSearch(primes, 73), 20);