Skip to content
Browse files

fix syntax

  • Loading branch information...
1 parent f13ccff commit 4e1dbd7719a66f6a2d3a2d112891518e59c5a811 @faizaanceg faizaanceg committed
Showing with 2 additions and 2 deletions.
  1. +2 −2 js-String-prototype-concat.md
View
4 js-String-prototype-concat.md
@@ -4,7 +4,7 @@ The concat() method combines the text of two or more strings and returns a new s
**Syntax**
```js
-str.concat(string2, string3[,..., stringN]);
+str.concat(string2[,..., stringN]);
```
### Parameters
@@ -32,4 +32,4 @@ console.log(str2.concat(" Welcome ", "to FCC."));
```
-Source [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/concat)
+Source [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/concat)

0 comments on commit 4e1dbd7

Please sign in to comment.
Something went wrong with that request. Please try again.