JavaScript Strings | String concat() Method

In this tutorial, we will explain the javascript string.concat() method with the definition of this method, syntax, parameters, and several examples.

JavaScript String concat()

JavaScript concat() method, which is used to add or join or combine two or more strings together and it will return a new string.

Syntax

string.concat(string1, string2, string3, ...., stringX);

Parameters of string replace method

| Parameter | Description |
| string one, string two, string three, …, stringX | This is required. The strings to be combined or added |

Example:

Here we will take the first example of a javascript string concat() method. We have one string original string and we will add or join two more string in the original string using the concat() method.

var originalString = "JavaScript String, ";
var str1 = " Method The concat()";
var str2 = " Method is used to join two or more strings";
 
var res = originalString.concat(str1, str2);
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>JavaScript Strings | String concat() Method</title>
</head>
<body>
     
</body>
<script type = "text/javascript">
    var originalString = "JavaScript String, ";
    var str1 = " Method The concat()";
    var str2 = " Method is used to join two or more strings";

    var res = originalString.concat(str1, str2);

    document.write( "Output :- " + res ); 
</script>  

</html>

Result of the above code is:

Output :- JavaScript String, Method The concat() Method is used to join two or more strings

#javascript #programming

JavaScript Strings | String concat() Method
34.60 GEEK