JavaScript String concat() Method

You are Here:

JavaScript String concat() Method

The concat() method joins two or more strings and returns a new string.

Note: This method does not alter the original string.

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <script> var str1 = "Hello"; var str2 = " "; var str3 = "there"; var str =str1.concat(str2, str3); document.write(str); </script> </body> </html>

Syntax

str.concat(string1, ..., stringN)

Parameter Values

ValueTypeExplanation
string1,...stringNRequiredThe strings to be joined.

Return Values

ValueExplanation
StringReturns a new string containing the combined text of the strings provided.

Reminder

Hi Developers, we almost covered 97% of JavaScript Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in JavaScript.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author