File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -34,9 +34,10 @@ console.log(capitalize('my sTring')); //My String
34
34
| Method | Description |
35
35
| -------------- | ---------------------------------------------------------------------------------------- |
36
36
| ` capitalize ` | changes the first letter of all words in string to upper case and the rest in lower case |
37
- | ` reverse ` | changes the order of a word independently |
38
- | ` isUpperCase ` | checkes if a word is in upper case |
39
- | ` isLowerCase ` | checkes if a word is in lower case |
37
+ | ` reverse ` | reverses the order of the characters in a string |
38
+ | ` reverseWord ` | reverses the order of the words in a string |
39
+ | ` isUpperCase ` | checks if a word is in upper case |
40
+ | ` isLowerCase ` | checks if a word is in lower case |
40
41
| ` toCamelCase ` | changes a word in any order to camel case notation |
41
42
| ` isPalindrome ` | checks if a string is the same in reverse order |
42
43
You can’t perform that action at this time.
0 commit comments