I have an array
["http://www.google.com", "http://www.yahoo.com", "http://www.weather.com"]
and I would like to produce one long string
<a href="http://www.google.com">http://www.google.com</a>, <a href="http://www.yahoo.com">http://www.yahoo.com</a>, <a href="http://www.weather.com">http://www.weather.com</a>
I know I can write a for loop, and then append each element of the array to the long string twice. Is there a slicker way to do that?