Forum Moderators: open
I know a little PHP.
My question is how do I replicate PHP .= in javascript.
I have tried searching but I can not think of a phrase or term to search for as I do not know how to describe what I am trying to do in one or two words.
Basically I can start a string in PHP with:
$string = "something";
I can then add to it with:
$string .= "and some more";
Can you do that in javascriptm, if so how?