这个方法类似 _.indexOf,除了它是执行二进制来检索已经排序的数组的。
_.indexOf
需要检索的数组
要评估位置的值
返回匹配值的 index ,否则返回 -1.
-1
_.sortedIndexOf([1, 1, 2, 2], 2); // => 2