I\'m implementing search functionality into my application. The search results in the UI are returned based on an array of objects. Essentially what I\'m trying to do is ite
A 'some' in your filter might do the trick, checking all the keys.
return result.filter(convo => { return Object.keys(convo).some(key => { return convo[key].toLowerCase().includes(searchbarVal.toLowerCase()) }) })