. Advertisement .
..3..
. Advertisement .
..4..
I need to add at end of string javascript. Do you have any suggestion for this?
Here is a suggestion for youvar str1 = "Hi ";
var str2 = "friend!";
var res = str1.concat(str2);
console.log(res);
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Do you think this might be a solution?
It’s recommended to use the “+” and “+=” operators instead of the String.concat method because they are faster.