includes Return true if the item is in the array otherwise, return false. Array.prototype._includes = function(value, fromIndex = 0) { for(let i = fromIndex; i < this.length; i++) { if(this[i] === value) { return true ...