Tests whether some element passes the provided function.
npm install array-some-x href="https://travis-ci.org/Xotic750/array-some-x"
title="Travis status"> src="https://travis-ci.org/Xotic750/array-some-x.svg?branch=master"
alt="Travis status" height="18">
href="https://david-dm.org/Xotic750/array-some-x"
title="Dependency status"> alt="Dependency status" height="18"/>
href="https://david-dm.org/Xotic750/array-some-x?type=dev"
title="devDependency status"> alt="devDependency status" height="18"/>
href="https://badge.fury.io/js/array-some-x"
title="npm version"> alt="npm version" height="18">
href="https://www.jsdelivr.com/package/npm/array-some-x"
title="jsDelivr hits"> alt="jsDelivr hits" height="18">
href="https://bettercodehub.com/results/Xotic750/array-some-x"
title="bettercodehub score"> alt="bettercodehub score" height="18">
href="https://coveralls.io/github/Xotic750/array-some-x?branch=master"
title="Coverage Status"> alt="Coverage Status" height="18">
Tests whether some element passes the provided function.
This method tests whether some element in the array passes the test
implemented by the provided function.
Kind: Exported member
Returns: boolean - true if the callback function returns a truthy value for
any array element; otherwise, false.
Throws:
- TypeError If array is null or undefined.
- TypeError If callBack is not a function.
| Param | Type | Description |
| --------- | --------------------- | --------------------------------------------- |
| array | array | The array to iterate over. |
| callBack | function | Function to test for each element. |
| [thisArg] | \* | Value to use as this when executing callback. |
Example
``js
import some from 'array-some-x';
function isBiggerThan10(element, index, array) {
return element > 10;
}
console.log(some([2, 5, 8, 1, 4], isBiggerThan10)); // false
console.log(some([12, 5, 8, 1, 4], isBiggerThan10)); // true
``