Thanks for the repsonse. What would you do in this scenario:
var arJoin = new Array("11", "", "13", "14", 15)
var myval = arJoin.join();
alert(myval);
If I were to use a "," as the separator, my output would look like this: "11,,13,14,15"
How can I remove the extra separator if the value is...