Concatenation operator in JavaScript

In this article, we will learn about the concatenation operator in JavaScript and how it works?
Submitted by Abhishek Pathak, on October 17, 2017

The + operator, is one of widely used operator in JavaScript and Java as well. This operator not only adds two numbers but it also concatenates two string literals when applied between them. This makes it very important to understand how it actually works and doesn't trip you when you are using it in your code.

The + and - operators in JavaScript and other languages as well are unary and binary. A unary operator requires only one operand to operate. Some examples are,

Code

//Unary + operator
var x = +10;
console.log(x);

//Unary - operator
var y = -10;
console.log(y);

The binary operator, on the other hand, requires two operands to work. Like,

Code

var x = 10;
var y = 20;

console.log(x + y); //30

When we are talking in respect to arithmetic operators, the + operator works as arithmetic operator. But, it has another very popular use case in JavaScript. To concatenate strings, as generally seen in output.

console.log( 'Hello' + 'World' );

The concatenation operator takes the latter operand, i.e. (second string) and appends it to the first operand (i.e., first string). This is why when you'll run the above program, we will get output as "HelloWorld". Note that this operator doesn't add spaces. If you need spaces, you need to provide it explicitly.

But, an interesting case comes up when we have multiple types of variables, say, string and an integer. Applying + operator between them will result in following output.

console.log( 'Include Help' + 10 );
//Output Include Help10

The reason for this is, JavaScript can't add string and numbers, as it is meaningless. So, the arithmetic operator changes to concatenation operator and adds the number after the string. However, since it is a number, an implicit type conversion occurs, and number is changed into string, and this why we get this output.

Hope you are clear with this JavaScript's invisible hole. If you like this article, share your thoughts in the comments.

JavaScript Examples »



Related Examples



Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.