JavaScript Concatenate Strings using concat() Method

JavaScript Concatenate Strings using concat() Method

javascript string concatenation es6; In this tutorial, you will learn javascript string.concat() method with the help of definition, syntax, parameters, and 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

ParameterDescription
string one, string two, string three, …, stringXThis is required. The strings to be combined or added

Ex:-

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 = "Hello, ";
var str1 = "developers!";
var str2 = " Must read this javascript string method for add two or more strings together!";

var res = originalString.concat(str1, str2);
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JavaScript Concatenate Strings</title>
</head>
<body>
  <script type = "text/javascript">
    
    var originalString = "Hello, ";
    var str1 = "developers!";
    var str2 = " Must read this javascript string method for add two or more strings together!";

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

    document.write( "Output :- " + res ); 

  </script>  
</body>
</html>

Result of the above code is:

Output :- Hello, developers! Must read this javascript string method for add two or more strings together!

JavaScript More string Methods, You may like

  1. javaScript Replace() |javaScript String Replace All
  2. Remove First Character From String Javascript
  3. javaScript String Contains | String includes() Method
  4. Remove Last Character From String Javascript
  5. JavaScript String Methods List | JavaScript Tutorial

AuthorAdmin

My name is Devendra Dode. I am a full-stack developer, entrepreneur, and owner of Tutsmake.com. I like writing tutorials and tips that can help other developers. I share tutorials of PHP, Python, Javascript, JQuery, Laravel, Livewire, Codeigniter, Node JS, Express JS, Vue JS, Angular JS, React Js, MySQL, MongoDB, REST APIs, Windows, Xampp, Linux, Ubuntu, Amazon AWS, Composer, SEO, WordPress, SSL and Bootstrap from a starting stage. As well as demo example.

Leave a Reply

Your email address will not be published. Required fields are marked *