// Why doesn't this:
_.invoke(['D','C'], 'lastIndexOf', ['A','B','C'])
// Return this:
[-1,2]?
我有一个字符串。(输入)
'ABC'
拆分成一个数组。(输入缓冲区)
['A','B','C']
我还有一个包含任意字符的数组。(触发字符)
['D','E']
我想检查 InputBuffer 中的最后一项,看看是否匹配任何 TriggerChars。
我想在 InputBuffer 中获得两个 TriggerChars 的最后一次出现。
_.invoke(['D','E'], 'lastIndexOf', ['A','B','C']);
// Returns [-1,-1] since C isn't D or E.
_.invoke(['D','C'], 'lastIndexOf', ['A','B','C']);
// Why doesn't this return [-1,2]
_.lastIndexOf(['A','B','C'],'D') == -1
_.lastIndexOf(['A','B','C'],'C') == 2
Invoke 没有得到什么? http://underscorejs.org/#invoke