I am a Software Engineer, currently working on both web application development and mobile application development. Learning new things and sharing those with fellow developers!
If you search the google writing "append string in JavaScript" it will show you the concat method of joining two strings together. And append also means the same, concatenation.
Here I have created two variables that holds two different strings and inside the console.log() I've concatenate those two. So that's why I said appending variables.
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
Actually it's not appending, because strings in JavaScript are immutable. You're creating new string and assign it the to the same variable.
If you search the google writing "append string in JavaScript" it will show you the concat method of joining two strings together. And append also means the same, concatenation.
Here I have created two variables that holds two different strings and inside the console.log() I've concatenate those two. So that's why I said appending variables.