You can do it:
var arr=[["hey","oh"],["scar","tissue"],["other","side"]];
arr.sort();
arr.join();
To sort alphabetically,
Binary search works by looking at the average value in the array, and then looking if the search keyword / number> or <is the value and thus dividing the array in half, then again dividing the remaining in half and continuing until it finds value;

To implement binary search, read here:
http://www.timlin.net/csm/cis111/Chapter10.pdf
52-56 ...
.