I know that in php you can do
abc = \'some\'; abc .= \'thing\'; echo abc; will output : something
how to do that in javascript ?
try this:
abc = 'some'; abc += 'thing'; alert(abc); // will output `something`