Select from following answers:- Using Concate() method
- Using + sign
- Using & sign
- Both answer1 and 2

- All Above
Using Concate() method as well as + sign,we can append any strings in Javascript.
For Ex:-
var a = "hello";
var b = " world";
alert(a.concat(b));
alert(a+b);
Show Correct Answer
Asked In: Many Interviews |
Alert Moderator