Enumerable.detect - Prototype JavaScript 框架

Xunxin Prototype API

detect

detect(iterator[, context]) -> firstElement | undefined

查找第一个使 iterator 返回 true 的元素。该方法有一个别名 find。参数 iterator 是一个函数对象。

可选的 context 参数是 iterator 要绑定的对象,若设定该参数,iterator 中的 this 关键字将指向 context 对象。