If you're working with ES6 You can use a set:
function arrayHas( array, element ) {
const s = new Set(array);
return s.has(element)
}
This should be more performant than just about any other method
If you're working with ES6 You can use a set:
function arrayHas( array, element ) {
const s = new Set(array);
return s.has(element)
}
This should be more performant than just about any other method