🔍String methods in JavaScript allow you to manipulate and extract information from text.
✂️The .charAt() method can be used to retrieve a specific character from a string based on its index.
⏰The .indexOf() method returns the index position of the first occurrence of a specified character in a string.
📏The .length property can be used to determine the length (number of characters) of a string.
🔀The .trim() method can be used to remove leading and trailing whitespace from a string.