Here is Some String functions in Java Script thisString.toLowerCase(); –>IT converts the string stored in the variable thisString to lower case. thisString.indexOf(compareString) — > Search for the occurence of the string stored in the variable compare string in the variable thisString. For ex : if thisString =”abcd” compareString=”bc” The output will be 1 ( the [...]