Бонджур

const binarySearch = (array, thingToFind, start, end) => {
   let mid = Math.floor((start + end) / 2);
}
Cruel Chicken