search | Searches the first string for any occurence of the second string. If the string is found, it returns the zero based index of the first occurence. If the string is not found, it returns -1. | search("benjamin", "ben") search("benjamin", "benji") search("benjamin", "jamin") | 0 -1 3 |