array to comma separated string code example
Example 1: C#: convert array of integers to comma separated string
var result = string.Join(",", arr);
Example 2: javascript array to comma separated string
var colors = ["red", "blue", "green"];
var colorsCSV = colors.join(","); //"red,blue,green"