Quantcast
Viewing latest article 7
Browse Latest Browse All 66

Answer by Neil Girardi for How do I check if an array includes a value in JavaScript?

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


Viewing latest article 7
Browse Latest Browse All 66

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>