W3Schools.com

JavaScript concat() Method

String Object Reference JavaScript String Object

Definition and Usage

The concat() method is used to join two or more strings.

This method does not change the existing strings, it only returns a copy of the joined strings.

Syntax

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

Parameter Description
string2, string3, ..., stringX Required. The strings to be joined


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The concat() method is supported in all major browsers.


Examples

Example 1

Join two strings:

<script type="text/javascript">

var str1="Hello ";
var str2="world!";
document.write(str1.concat(str2));

</script>

The output of the code above will be:

Hello world!

Try it yourself »

Example 2

Join three strings:

<script type="text/javascript">

var str1="Hello ";
var str2="world!";
var str3=" Have a nice day!";
document.write(str1.concat(str2,str3));

</script>

The output of the code above will be:

Hello world! Have a nice day!

Try it yourself »


String Object Reference JavaScript String Object
WEB HOSTING
Best Web Hosting
PHP MySQL Hosting
Best Hosting Coupons
UK Reseller Hosting
Cloud Hosting
Top Web Hosting
$7.95/mo SEO Hosting
Premium Website Design
WEB BUILDING
Download XML Editor
FREE Website BUILDER
Free Website Templates Free CSS Templates
Make Your Own Website
W3SCHOOLS EXAMS
Get Certified in:
HTML, CSS, JavaScript, XML, PHP, and ASP
W3SCHOOLS BOOKS
New Books:
HTML, CSS
JavaScript, and Ajax
STATISTICS
Browser Statistics
Browser OS
Browser Display
SHARE THIS PAGE