1. 2
    Check if an array contains an item using Array.prototype.includes
    1m 35s

Check if an array contains an item using Array.prototype.includes

Share this video with your friends

Send Tweet

We often want to check if an array includes a specific item. It's been common to do this with the Array.prototype.indexOf method, but now we have a simpler way: We can use the Array.prototype.includes method, which is available starting with ES2016.