.indexOf(String str): This method returns the starting index position of the first occurrence of a specified substring within another string.
.replace(char oldChar, char newChar): This method replaces all occurrences of one character with another character in a string.
.concat(String str): This method concatenates or combines two strings together.