📚JavaScript provides 34 string methods, allowing you to perform various operations on strings.
🔢The length property of the string object gives you the number of characters in a string.
🔍The index of method helps you find the position of a specific character or substring in a string.
➡️The slice method allows you to extract a section of a string by specifying start and end positions.
⭐The substring method is similar to slice, but it uses start and end indices rather than positions.