In the loop below, how can I remove the comma from the latt key in the loop?
var result = 'These are the results: ';
jQuery.each(item['keyterms']['terms'],function(i,kw){
for (key in keywords){
sep = ',';
if (keywords[key] > 5) result += '<span>' + key + sep + '</span>';
}}
<span>what good is the separator? Maybe you meant'<span>' + key + '</span>' + sep. – Nimrod Feb 16 '11 at 5:40