# The String concat() method

> Learn how the JavaScript concat() method joins the current string with one or more strings passed as arguments, returning the combined string as a result.

Author: [Flavio Copes](https://flaviocopes.com/about/) | Published: 2019-02-17 | Topics: [JavaScript](https://flaviocopes.com/tags/js/) | Canonical: https://flaviocopes.com/javascript-string-concat/

Concatenates the current string with the string passed as parameter.

Example:

```js
'Flavio'.concat(' ').concat('Copes') //'Flavio Copes'
```

You can specify a variable number of arguments, and if you do so all those arguments will be concatenated to the original string:

```js
'Flavio'.concat(' ', 'Copes') //'Flavio Copes'
```
