+ operator used for concatenate string in Javascript
We can also use += operator for concatenate string
Example like
var a,b,c;
a="test";
b="test1";
c= a+ " " + b;
We can also use += operator for concatenate string
Example like
var a,b,c;
a="test";
b="test1";
c= a+ " " + b;