Return positive value if (any of the) passed value(s) exists in array, or optionally an index
Please consider following this project's author,
Charlike Mike Reagent, and
If you have any how-to kind of questions, please read the Contributing Guide and Code of Conduct documents. For bugs reports and feature requests, please create an issue or ping @tunnckoCore at Twitter.
Project is semantically versioned & automatically released from GitHub Actions with Lerna.
Table of Contents
(TOC generated by verb using markdown-toc)
Install
This project requires Node.js >=10.13 (see
Support & Release Policy).
Install it using yarn or
npm.
We highly recommend to use Yarn when you
think to contribute to this project.
$ yarn add arr-includes
API
Generated using jest-runner-docs.
arrIncludes
Check if any of values
exists on arr
.
Signature
function(arr, values)
Params
-
arr
{Array} - array to check -
values
{Array<string>} - array or string -
returns
{boolean|number} - returnsfalse
if not found,true
if index is 0 from the array, otherwisenumber
index
Examples
import arrIncludes from 'arr-includes';
console.log(arrIncludes([1, 'bar', 55], 2)); // => false
console.log(arrIncludes([1, 'bar', 3], 3)); // => 2
console.log(arrIncludes([1, 'bar', 3, true], false)); // => false
console.log(arrIncludes([1, 'bar', 44, true], true)); // => 3
console.log(arrIncludes(['foo', 'bar'], 'baz')); // => false
console.log(arrIncludes(['foo', 'bar'], 'foo')); // => true
console.log(arrIncludes(['qux', 'foo', 'bar'], 'foo')); // => 1
console.log(arrIncludes([true, 'qqq', 'bar'], true)); // => true
console.log(arrIncludes(['true', 'qqq', 'bar'], true)); // => false
console.log(arrIncludes(['qqq', 'bar', true], true)); // => 2
console.log(arrIncludes(['qqq', 'true', 'bar'], true)); // => false
console.log(arrIncludes([false, 'foo', null, 'bar'], null)); // => 2
console.log(arrIncludes(['foo', 'bar', 'qux'], ['a', 'b', 'c'])); // => false
console.log(arrIncludes(['b', 'a', 'c'], ['a', 'b', 'c'])); // => 1
console.log(arrIncludes(['foo', 'bb', 'b'], ['a', 'b'])); // => 2
console.log(arrIncludes(['foo', 'bar', 'qux'], ['a', 'b', 'foo'])); // => true
console.log(arrIncludes(['bar', 123, 'foo', 'qux'], ['a', 'b', 'foo'])); // => 2
Contributing
Guides and Community
Please read the Contributing Guide and Code of Conduct documents for advices.
For bug reports and feature requests, please join our community forum and open a thread there with prefixing the title of the thread with the name of the project if there's no separate channel for it.
Consider reading the Support and Release Policy guide if you are interested in what are the supported Node.js versions and how we proceed. In short, we support latest two even-numbered Node.js release lines.
Support the project
Become a Partner or Sponsor?
Not financial support? Okey!
Pull requests,
stars and all kind of
contributions
are always welcome.
Contributors
This project follows the all-contributors specification. Contributions of any kind are welcome!
Thanks goes to these wonderful people (emoji key), consider showing your support to them:
Charlike Mike Reagent |
License
Copyright (c) 2016-present, Charlike Mike Reagent
<opensource@tunnckocore.com>
& contributors.
Released under the MPL-2.0 License.