Vanilla Javascript equivalent for lodash _.includes
1 answer
ES7: Array.prototype.includes()
[1, 2, 3].includes(2); // true
ES5: Array.prototype.indexOf()
>= 0
[2, 5, 9].indexOf(5) >= 0; // true
[2, 5, 9].indexOf(7) >= 0; // false
If you prefer a function:
function includes (array, element) { return array.indexOf(element) >= 0 }
and use it like:
includes([2, 5, 9], 5); // true
+4
source to share