Skip to content

Instantly share code, notes, and snippets.

@panoptican
Last active October 3, 2018 00:04
Show Gist options
  • Save panoptican/d5fb9b68dabfd2ce89779fb9cf68af71 to your computer and use it in GitHub Desktop.
Save panoptican/d5fb9b68dabfd2ce89779fb9cf68af71 to your computer and use it in GitHub Desktop.
[(JS) Array - to CSV] Converts a 2D array to a comma-separated values (CSV) string. #array #js

Use Array.prototype.map() and Array.prototype.join(delimiter) to combine individual 1D arrays (rows) into strings. Use Array.prototype.join('\n') to combine all rows into a CSV string, separating each row with a newline. Omit the second argument, delimiter, to use a default delimiter of ,.

arrayToCSV([['a', 'b'], ['c', 'd']]); // '"a","b"\n"c","d"'
arrayToCSV([['a', 'b'], ['c', 'd']], ';'); // '"a";"b"\n"c";"d"'
const arrayToCSV = (arr, delimiter = ',') =>
arr.map(v => v.map(x => `"${x}"`).join(delimiter)).join('\n');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment