12What are the most commonly used string methods in JavaScript?
Key string methods include: length, indexOf/includes for searching, slice/substring for extracting, toUpperCase/toLowerCase for case, trim for whitespace, split for converting to arrays, replace/replaceAll for substitution, and template literals for interpolation.