3.1.2 • Published 6 years ago
array-includes-x v3.1.2
array-includes-x
Determines whether an array includes a certain element.
module.exports
⇒ boolean ⏏
This method determines whether an array includes a certain element, returning true or false as appropriate.
Kind: Exported member
Returns: boolean - true
if searched element is included; otherwise false
.
Throws:
- TypeError If
array
isnull
orundefined
.
Param | Type | Description |
---|---|---|
array | Array | The array to search. |
searchElement | * | Element to locate in the array . |
fromIndex | number | The position in this array at which to begin searching for searchElement. A negative value searches from the index of array.length + fromIndex by asc. Defaults to 0. |
Example
import includes from 'array-includes-x';
const subject = [2, 3, undefined, true, 'hej', null, 2, false, 0, -0, NaN];
console.log(includes(subject, undefined)); // true
console.log(includes(subject, undefined, 3)); // false
console.log(includes(subject, NaN)); // true
console.log(includes(subject, 10)); // false
3.1.2
6 years ago
3.1.1
6 years ago
3.1.0
6 years ago
3.0.19
6 years ago
3.0.18
6 years ago
3.0.17
6 years ago
3.0.16
6 years ago
3.0.15
6 years ago
3.0.14
6 years ago
3.0.13
6 years ago
3.0.12
6 years ago
3.0.11
6 years ago
3.0.10
6 years ago
3.0.9
6 years ago
3.0.8
6 years ago
3.0.7
6 years ago
3.0.6
6 years ago
3.0.5
6 years ago
3.0.3
6 years ago
3.0.2
6 years ago
3.0.1
6 years ago
3.0.0
6 years ago
2.0.0
8 years ago
1.0.0
8 years ago