I\'m trying to iterate over a \"value\" list and convert it into a string. Here is the code:
var blkstr = $.each(value, function(idx2,val2) {
not sure if this is what you wanted but
var arr = [A, B, C]; var arrString = arr.join(", ");
This results in the following output:
A, B, C