ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
## overSome + [link](./overSome "Link to this entry.") + [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L13617 "View in source.") + [npm](https://www.npmjs.com/package/lodash.oversome "See the npm package.") ``` _.overSome(predicates) ``` 创建一个传入提供的参数的函数并调用 `iteratees` 判断是否 存在 有真值的函数。 ### 参数 1. predicates (...(Function|Function[]) 要调用的 predicates ### 返回值 (Function) 返回新的函数 ### 示例 ``` var func = _.overSome(Boolean, isFinite); func('1'); // => true func(null); // => true func(NaN); // => false ```