Array.prototype.deepIncludes = function (searchEl) {
let indexes = [];
for (let i = 0; i < this.length; i++) {
if (this[i].includes(searchEl)) indexes.push(i);
}
return { result: indexes.length > 0, indexes };
}
let test = chat.deepIncludes('чай');
console.log(test.result); // true
console.log(test.indexes); // индексы строк с совпадением