JavaScript provides a wide range of string methods that can be used to manipulate and modify strings. Here are 15 commonly used string methods in JavaScript, along with examples and their outputs.

1. length

2. trim()

3. toUpperCase()

4. toLowerCase()

5. charAt()

6. indexOf()

7. includes()

8. substring()

9. slice()

10. replace()

11. split()

12. concat()

13. startsWith()

14. endsWith()

15. repeat()

These string methods can be used to perform various operations on strings in JavaScript, making it easier to manipulate and modify text data in your applications.