集合(Collections)somesome_.some(list, [predicate], [context])Alias: any如果 list 中有任何一个元素通过 predicate 的真值检测就返回 true。一旦找到了符合条件的元素, 就直接中断对 list 的遍历。predicate 通过 iteratee 进行转换,以简化速记语法。_.some([null, 0, 'yes', false]);=> true