Skip to content

Commit cbc1015

Browse files
Merge pull request #62 from AmritDevkota/master
String functions Case fixed
2 parents 5171c80 + 66853f7 commit cbc1015

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

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)