How to Use JavaScript 👨‍💻 includes to Find 🔍 Matches in Strings and Arrays

Determining if a String or Array contains a sub string or set of characters using JavaScript is a common task. Most developers expect a native JavaScript contains method since most languages use contains.

As with many things JavaScript is slightly different.

With ES6 JavaScript added the includes method natively to both the Array and String natives. The method returns true or false to indicate if the sub-string or element exists. While true or false may provide the answer you need, regular expressions can check if a sub-string exists with a more detailed answer.

Until recently developers would need to create their own method using either indexOf or a regular expression.


Up Next
    Ebook Download
    View all
    Learn
    View all
    sourabhsomani.com