Attempting using Array.join for string concatenation, but the following is causing FF to choke:
var tmp = ["disco","dance"];
for (i = 0; i<tmp.length; i++) {
tmp.push(piece);
alert(tmp[i]);
}
str = tmp.join('');
return str;
Would someone enlighten my usage?
piecedeclared/defined?strset to when this is done?