submitted by: Snippissimo
Javascript: add to string
Simple javascript snippet, showing how to add additional text to the end of a string - shorthand.
code snippet:
var html = "this little";
var html += " piggy went to market.";
var html = "this little";
var html += " piggy went to market.";
