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.