TheDeveloperBlog.com

Home | Contact Us

C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML

JavaScript String concat() Method

JavaScript string concat() Method with example, by string literal, by string object (using new keyword), javascript string methods, charAt(index) method, concat(str) method, indexOf(str) method, lastIndexOf(str) method, lowerCase() method, upperCase() method, slice(beginIndex, endIndex) method, trim() method, toLowerCase(), slice(), concat(), charCodeAt() method etc.

<< Back to JAVASCRIPT

JavaScript String concat() Method

The JavaScript string concat() method combines two or more strings and returns a new string. This method doesn't make any change in the original string.

Syntax

The concat() method is represented by the following syntax:

string.concat(str1,str2,...,strn)

Parameter

str1,str2,...,strn - It represent the strings to be combined.

Return

Combination of strings.

JavaScript String concat() Method Example

Let's see some simple examples of concat() method.

Example 1

Here, we will print the combination of two strings.

<script>
var x="TheDeveloperBlog";
var y=".com";
document.writeln(x.concat(y));
</script>
Test it Now

Output:

TheDeveloperBlog.com

Example 2

Here, we will print the combination of three strings.

<script>
var x="TheDeveloperBlog";
var y=".com";
var z=" Tutorials";
document.writeln(x.concat(y,z));
</script>
Test it Now

Output:

TheDeveloperBlog.com Tutorials

Example 3

In the last example, we provided the space between the strings while initializing it. Here, we will perform the similar task through the method.

<script>
var x="TheDeveloperBlog";
var y=".com";
var z="Tutorials";
document.writeln(x.concat(y+" "+z));
</script>
Test it Now

Output:

TheDeveloperBlog.com Tutorials

Next TopicJavaScript String




Related Links:


Related Links

Adjectives Ado Ai Android Angular Antonyms Apache Articles Asp Autocad Automata Aws Azure Basic Binary Bitcoin Blockchain C Cassandra Change Coa Computer Control Cpp Create Creating C-Sharp Cyber Daa Data Dbms Deletion Devops Difference Discrete Es6 Ethical Examples Features Firebase Flutter Fs Git Go Hbase History Hive Hiveql How Html Idioms Insertion Installing Ios Java Joomla Js Kafka Kali Laravel Logical Machine Matlab Matrix Mongodb Mysql One Opencv Oracle Ordering Os Pandas Php Pig Pl Postgresql Powershell Prepositions Program Python React Ruby Scala Selecting Selenium Sentence Seo Sharepoint Software Spellings Spotting Spring Sql Sqlite Sqoop Svn Swift Synonyms Talend Testng Types Uml Unity Vbnet Verbal Webdriver What Wpf