Skip to content

Commit 66853f7

Browse files
committed
String functions Case fixed
fixed concat, match, split, join functions
1 parent 5171c80 commit 66853f7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -242,11 +242,11 @@ Javascript provide many functions to operate on string, like indexOf(), split(),
242242
|Function | Description |
243243
|-----------|---------------------------|
244244
|charAt() |It is useful to find a specific character present in a string.|
245-
|Concat() |It is useful to concat more than one string.|
245+
|concat() |It is useful to concat more than one string.|
246246
|indexOf() |It is useful to get the index of a specified character or a part of the string.|
247-
|Match() |It is useful to match multiple strings.|
248-
|Split() |It is useful to split the string and return an array of string.|
249-
|Join() |It is useful to join the array of strings and those are separated by comma (,) operator.|
247+
|match() |It is useful to match multiple strings.|
248+
|split() |It is useful to split the string and return an array of string.|
249+
|join() |It is useful to join the array of strings and those are separated by comma (,) operator.|
250250

251251
**Example:**
252252

0 commit comments

Comments
 (0)