Skip to content

Instantly share code, notes, and snippets.

@oropesa
Created February 24, 2019 20:42
Show Gist options
  • Save oropesa/3ac479a9c94e2e511cdeb5ce9fb020a8 to your computer and use it in GitHub Desktop.
Save oropesa/3ac479a9c94e2e511cdeb5ce9fb020a8 to your computer and use it in GitHub Desktop.
Converts a 2D array to a comma-separated values (CSV) string. 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 …
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