I\'m learning lodash. Is it possible to use lodash to find a substring in an array of strings?
var myArray = [ \'I like oranges and apples\', \'I hat
_.some(myArray, function(str){ return _.includes(str, 'orange') })