Is there a built in method in Typescript that searches a string array and finds all items that contain the search string. e.g.
var myarray = ["apple", "orange", "app"];
var searchKey = "app"
this search key should return the array ["apple", "app"]